我在ASPNET网页中显示SSRS reportviewer控件。我正在使用报告处理。它适用于reportviewer中的普通参数,但对多选参数的操作很奇怪。如果我单击一个多选参数,我可以看到列表闪烁一秒然后消失。每次点击它都会这样做。
任何人都有解决方案来阻止此闪光和消失,这样我就可以从一系列参数中选择?
我已经尝试启用IE8兼容模式,但没有运气。
有什么建议吗?
谢谢!
// Set the processing mode for the ReportViewer to Remote
reportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
Microsoft.Reporting.WebForms.ServerReport serverReport = reportViewer.ServerReport;
// Set the report server URL and report path
string reportURL = string.Empty;
switch (ConfigurationManager.AppSettings["Environment"].ToUpper())
{
case "TEST":
reportURL = ConfigurationManager.AppSettings["testURL"];
break;
case "STAGE":
reportURL = ConfigurationManager.AppSettings["stageURL"];
break;
case "PROD":
reportURL = ConfigurationManager.AppSettings["prodURL"];
break;
default:
this.lblMessage.Text = "Environment not found.";
return;
}
serverReport.ReportServerUrl = new Uri(reportURL);
serverReport.ReportPath = Path.Combine(ConfigManager.ReportingService.BaseReportPath, reportName);