0

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

  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
4

0 回答 0