SSRS regenerate the report
I'm accessing reports from an SSRS server using URL access. I generate the report links dynamically in my web app and everything is working fine. Except for that the reports are not refreshed automatically. I think the server serves all subsequent request from cache. The reports are refreshed only when a different report is generated(diferent DB values for the report).
This is how I'm accessing them.
http://seivmedevrs01.ctc.seic.com/ReportServer?%2fIMS%2fDublin%2fKII%2fDev%2fKeyI开发者_开发问答nvestorInformation&rc:toolbar=false&Id=13
I wonder if there is a parameter that tells the server to allways
Add this parameter to the URL:
rs:ClearSession=true
Giving you a URL of:
http://seivmedevrs01.ctc.seic.com/ReportServer?%2fIMS%2fDublin%2fKII%2fDev%2fKeyInvestorInformation&rc:toolbar=false&Id=13&rs:ClearSession=true
Source
精彩评论