SSRS 2012和asp.net

时间:2014-03-08 17:17:48

标签: asp.net reporting-services ssrs-2012

SSRS 2012是否存在任何问题我将参数传递给我的报告,当在页面上运行它不能正常工作时,但是当删除参数时工作正常,请问2012年ssrs上有任何问题

  MyReportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote
    MyReportViewer.ServerReport.ReportServerUrl = New Uri("http://jean-daniel/ReportServer_SQLEXPRESSADDD")
    ' Report Server URL
    MyReportViewer.ServerReport.ReportPath = "/Report Project2/Auction History"
    ' Report Name

    Dim params(0) As ReportParameter
    params(0) = New ReportParameter("SellerID", 201, False)
    MyReportViewer.ServerReport.SetParameters(params)
    MyReportViewer.ServerReport.Refresh()
    MyReportViewer.ShowParameterPrompts = False
    MyReportViewer.ShowToolBar = False

0 个答案:

没有答案