vote up 0 vote down star

I have a web page that downloads a pdf version of an ssrs report through a link. However when I make changes to the data, the browser pulls up the same pdf file as before without the updated information (the pdf file stored in the temp folder). If I then go to another browser and download the PDF I get the new version, but the other browser still gets the old version. How can I force the browser to download a new version of the pdf report?

The url I use to create the pdf is below:

http://servername/ReportServer/Pages/ReportViewer.aspx?/MyReport/&rs%3ACommand=Render&ReportID=123456&rs%3AFormat=PDF

flag

2 Answers

vote up 2 vote down check

I used the clearsession parameter to get a fresh pdf with updated information, it looks like this in the url:

http://servername/ ReportServer/Pages/ReportViewer.aspx?/MyReport/ &rs:Command=Render&ReportID=123456 &rs:Format=PDF &rs:ClearSession=true

Managing Report Sessions on a URL

link|flag
vote up 0 vote down

Any one of the flowing will work.

link|flag
@CptSkippy: Not necesarely. IE 6 doesn't mind of the Context-Expiration header and happily caches all it can. – voyager Aug 28 at 17:26
@voyager : I think in the past there was confusion about what settings IE respected but Microsoft has clearly defined IE's behavior and my examples work when setup properly (support.microsoft.com/kb/234067). – CptSkippy Aug 28 at 18:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.