Beispiel #1
0
    protected void bt_SaveDataCacache_Click(object sender, EventArgs e)
    {
        Dictionary <string, object> param;

        if (!pl_Param.GetParamsValue(out param))
        {
            MessageBox.Show(this, "请正确设定必填参数!");
            return;
        }
        Guid reportid = new Guid(ViewState["Report"].ToString());

        Rpt_ReportBLL report = new Rpt_ReportBLL(reportid);

        report.SaveForever(param);
        MessageBox.Show(this, "保存成功");
    }
    protected void bt_SaveDataCacache_Click(object sender, EventArgs e)
    {
        Dictionary<string, object> param;
        if (!pl_Param.GetParamsValue(out param))
        {
            MessageBox.Show(this, "请正确设定必填参数!");
            return;
        }
        Guid reportid = new Guid(ViewState["Report"].ToString());

        Rpt_ReportBLL report = new Rpt_ReportBLL(reportid);
        report.SaveForever(param);
        MessageBox.Show(this, "保存成功");
    }