I have a .csv file with one line of data. I have a link to the .csv file, report.csv, that opens the file.
I have another page on my site that appends another line to report.csv. However, when I click to see the new result, report.csv still has one line of data. If I go into the server and pull the file out it has two lines of data like it should.
I believe the file is being cached. I've added
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<meta http-equiv="pragma" content="no-cache" />
to the top. I've tried deleting the file and adding all the new data at once instead of appending the extra line of data. Any idea how I can stop the site from bringing up the old file?