отчеты Crystal с использованием параметров - PullRequest
0 голосов
/ 23 мая 2011

Я впервые использую Crystal Reports.Я написал код, который выглядит следующим образом:

public partial class _Default : System.Web.UI.Page 
{
    private ReportDocument report = new ReportDocument();
    protected void Page_Load(object sender, EventArgs e)
    {
        report.Load(Server.MapPath("CrystalReport1.rpt"));
        report.FileName = Server.MapPath("CrystalReport1.rpt");
        if (!Page.IsPostBack)
            {
                BindData();
            }
    }

protected override void OnUnload(EventArgs e)
{
    base.OnUnload(e);
    this.Unload+=new EventHandler(Page_Unload);
}

    public void Page_Unload(object sender, EventArgs e)
    {
        report.Clone();
        report.Dispose();
    }

private void BindData()
    {        
        Trusted_Connection=true";
        string connectionString = @"Data Source=WINSERVER;Initial Catalog=card;User       ID=sa;Password = db2admin";
        SqlConnection myConnection = new SqlConnection(connectionString);
        SqlDataAdapter ad = new SqlDataAdapter("SELECT name,address,idno FROM iffcar", myConnection);
        DataSet ds = new DataSet();
        ad.Fill(ds);
        DropDownList1.DataSource = ds;
        DropDownList1.DataTextField = "name";
        DropDownList1.DataValueField = "idno";
        DropDownList1.DataBind();
    }


protected void Btn_DisplayReport(object sender, EventArgs e)
    {

    int idno = Convert.ToInt32(DropDownList1.SelectedValue);
    report.SetParameterValue("idno", idno);
    CrystalReportViewer1.ReportSource = report;
    }
}

Я получаю значения в раскрывающемся списке, но enter image description here

Теперь моя проблема заключается в том, что как только я выбираю значение из раскрывающегося списка, я хочу отчет оэто значение.как это сделать .....

пожалуйста, помогите мне решить мою проблему.

1 Ответ

3 голосов
/ 23 мая 2011

Попробуйте использовать порядковый номер параметра:

protected void Btn_DisplayReport(object sender, EventArgs e)
{
   int idno = Convert.ToInt32(DropDownList1.SelectedValue);
   report.SetParameterValue(0, idno);
   CrystalReportViewer1.ReportSource = report;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...