使用“rs:ClearSession”禁用SSRS报告缓存

时间:2013-05-31 10:36:34

标签: reporting-services ssrs-2008 reportviewer2008

我找到了一种方法来实现这一点,即使用查询字符串“rs:ClearSession”必须传入URL。

以下是我的代码ASP.NET SSRS Reportviewer集成页面,

    rptvw.ProcessingMode = ProcessingMode.Remote; 
    rptvw.ServerReport.ReportServerUrl = new Uri("http://localhost/reportserver"); 
    rptvw.ServerReport.ReportPath = "/Northwind/NewNorthwind";

    ReportParameter[] param = new ReportParameter[1]; 
    param[0] = new ReportParameter("CustomerID", txtparam.Text); 
    rptvw.ServerReport.SetParameters(param);

    rptvw.ServerReport.Refresh();

问题是我应该在哪里传递查询字符串“rs:ClearSession”。我试过上面的ReportServerUrl和ReportPath但是仍然出错可能是我做了任何语法错误。

在URL中传递查询字符串“rs:ClearSession”的位置和方式

0 个答案:

没有答案