0

我的网站上有一个 RDLC 控件。这是客户端报告。我正在使用带有 Visual Studio 2010 的 ASP.net 3.5 报告将许多过滤条件用作输入参数。有一个生成结果的 SQ1 服务器 2008 R2 存储过程。其中一个输入是带有关联日历控件的日期时间文本框。有一个“刷新”按钮。单击此按钮将刷新报告。我想为日期添加一些验证。我所有的验证工作正常。我的问题是当用户在日期时间文本框中输入错误的字符时,报告失败,这是正确的,但是当用户点击刷新按钮时,虽然错误消失了,但报告仍然显示错误消息。

本地调用报表时有没有办法刷新参数。这是我的简单代码 -

    protected void BtnRefresh_Click(object sender, EventArgs e)
    {
        //check object session
        LoginSessionData.IsValid();

        //Hide the display panel 
        DisplayMessage.Visible = false;

        //add a try catch block here
        try
        {

            ReportViewer1.LocalReport.Refresh();
        }
        catch (Exception ex)
        {
            m_logger.Error(ex);
        }
    }

在此处输入图像描述

4

1 回答 1

0

您可以将参数值设置为空白或以其他方式使用:

ReportParameter p1 = new 
      ReportParameter("ShowDescriptions", checkBox1.Checked.ToString());
ReportParameter p2 = new 
      ReportParameter("MyDate", DateTime.Now.ToString());
ReportViewer1.LocalReport.SetParameters(new ReportParameter[] { p1, p2 });
于 2012-09-14T04:19:10.093 回答