开发者

SSRS regenerate the report

开发者 https://www.devze.com 2023-03-16 08:24 出处:网络
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 automat

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

0

精彩评论

暂无评论...
验证码 换一张
取 消