简体   繁体   English

带参数的ASP.NET报告

[英]ASP.NET report with parameter

I have a stored procedure named "Graph" that should get a value to the parameter @Material, and I created a report in ASP.NET that should show a chart using the data from the stored procedure. 我有一个名为“ Graph”的存储过程,该存储过程应获取参数@Material的值,并在ASP.NET中创建了一个报告,该报告应使用该存储过程中的数据显示一个图表。

However, when I try to load the report I get: 但是,当我尝试加载报告时,我得到:

An error has occurred during report processing. 报表处理期间发生错误。 Cannot create a connection to data source 'PhilipsMaterialsDataSet'. 无法创建与数据源“ PhilipsMaterialsDataSet”的连接。 ObjectDataSource 'ObjectDataSource1' could not find a non-generic method 'GetData' that has no parameters. ObjectDataSource'ObjectDataSource1'找不到没有参数的非通用方法'GetData'。

I tried different solutions but none of them worked. 我尝试了不同的解决方案,但没有一个起作用。 Also, I'm not sure if I should declare the parameter in the ASP code. 另外,我不确定是否应该在ASP代码中声明参数。

( by the way, GetData is not recognized here because it has one parameter (@Material-from the stored procedure) and for some reason, it is called without any parameters ) (顺便说一句,这里没有识别出GetData,因为它有一个参数(来自存储过程的@ Material-),由于某种原因,它没有任何参数地被调用)

The code behind: 后面的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Microsoft.Reporting.WebForms;


public partial class StatisticsPage : System.Web.UI.Page
{
    string Connectionstring = "server=(local)\\SQLEXPRESS;database=PhilipsMaterials;Integrated Security=SSPI";
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {

        }

    }

   protected void btndisplay_Click(object sender, EventArgs e)
    {
        BindReport();
    }
    private void BindReport()
    {
        SSRSReport report = new SSRSReport();
        SqlParameter[] sqlParams = new SqlParameter[] {
         new SqlParameter("@Material","453567068441")

      };
        string ReportDataSource = "DataSet1";
        bool bind = report.CreateReport(Connectionstring, "graph", sqlParams, ref ReportViewer1, ReportDataSource);
        if (bind)
        {
            ReportViewer1.Visible = true;
        }
    }
}


public class SSRSReport
{


       public SSRSReport()
       {
              //
              // TODO: Add constructor logic here
              //
       }
    public bool CreateReport(String Connectionstring,string StoreProcedureName ,SqlParameter[] Parameter,ref  Microsoft.Reporting.WebForms.ReportViewer ReportViewer,string ReportDataSource)
    {
        bool reportbind = false;
        using (SqlConnection con = new SqlConnection(Connectionstring))
        {

            SqlCommand com = new SqlCommand();
            com.Connection = con;
            com.CommandType = CommandType.StoredProcedure;
            com.CommandText = StoreProcedureName;
            com.Parameters.AddRange(Parameter);
            DataSet ds = new DataSet();
            SqlDataAdapter da = new SqlDataAdapter(com);
            da.Fill(ds);
            ReportDataSource datasource = new ReportDataSource(ReportDataSource, ds.Tables[0]);
            if ( ds.Tables[0].Rows.Count > 0)
            {
                ReportViewer.LocalReport.DataSources.Clear();
                ReportViewer.LocalReport.DataSources.Add(datasource);





                //This is another solution I tried:





                //List<ReportParameter> lstReportParameters = new List<ReportParameter>();
                //ReportParameter objReportParameter = new ReportParameter("Material", "453567068441");
                //lstReportParameters.Add(objReportParameter);
                //ReportViewer.LocalReport.SetParameters(lstReportParameters);
               // ReportViewer.ServerReport.Refresh();

                reportbind = true;
            }                       
        }
       return  reportbind;
    }

}

The ASP code: ASP代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="StatisticsPage.aspx.cs" Inherits="StatisticsPage" %>

<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>Test SSRS</title>
</head>
<body>
      <form id="form1" runat="server">
    <div>

    </div>
        <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Height="610px" Width="1179px" ShowParameterPrompts="true">
            <LocalReport ReportPath="Report.rdlc" >
                <DataSources>
                    <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="DataSet1" />
                </DataSources>
            </LocalReport>
        </rsweb:ReportViewer>
        <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData" TypeName="PhilipsMaterialsDataSetTableAdapters.GraphTableAdapter" >
        </asp:ObjectDataSource>
          <asp:ScriptManager ID="ScriptManager1" runat="server">
          </asp:ScriptManager>
    </form>
</body>
</html>
public DataSet CreateReport(String Connectionstring,string StoreProcedureName ,SqlParameter[] Parameter,ref  Microsoft.Reporting.WebForms.ReportViewer ReportViewer,string ReportDataSource) {

//return the dataset

}

<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
   SelectMethod="CreateReport" TypeName="SqlHelper" />

can u try to change ur method return value to DataSet.. and in the codebehind try to databind to that method.. 您可以尝试将方法的返回值更改为DataSet ..并在后面的代码中尝试将数据绑定到该方法。

Maybe it might work.. 也许可以用..

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM