Hi, forgive me if this is a repeated question, I cannot seem to find anything like this.
I have a link to an excel document on my website. The link works fine, and I can configure my local machine it to open in the Excel application each time and not the browser(haven't found a way to force this from server side).
My problem is this:
If I download and open the file it works fine.
If I then overwrite the Excel file on the server and click the download link again, I get the original document again. E.g the excel document is not the latest version.
I have tried deleting all Temp Internet files, clearing the cache and history but it will still d/load the old version of the excel file.
Is there any way to force the user to download the latest file everytime they click on the link?
It is not appropiate to change the configuration on every users' machine. I need some way of coding the link to force the latest version upon the users.
The code I am currently using is
Thanks, Tony
I have a link to an excel document on my website. The link works fine, and I can configure my local machine it to open in the Excel application each time and not the browser(haven't found a way to force this from server side).
My problem is this:
If I download and open the file it works fine.
If I then overwrite the Excel file on the server and click the download link again, I get the original document again. E.g the excel document is not the latest version.
I have tried deleting all Temp Internet files, clearing the cache and history but it will still d/load the old version of the excel file.
Is there any way to force the user to download the latest file everytime they click on the link?
It is not appropiate to change the configuration on every users' machine. I need some way of coding the link to force the latest version upon the users.
The code I am currently using is
Code:
<a href="\intranet\files\Book1.xls" target="_blank"> Download </a>
Thanks, Tony