我试图通过弹出窗口将datagrid导出为ex​​cel。从应用程序中删除代码后,我能够成功导出到excel,但是,当尝试使用应用程序中完全相同的代码导出到excel时,出现以下错误:

从我的尝试/捕获:

由于代码已优化或本机框架位于调用堆栈的顶部,因此无法评估表达式。

...并从控制台:

错误:Sys.WebForms.PageRequestManagerParserErrorException:无法解析从服务器收到的消息。

我的服务器端代码如下:

protected void btnExportToExcel_Click(object sender, EventArgs e)
    {
        ExportDataSetToExcel();
    }

private void ExportDataSetToExcel()
    {

        try
        {
            DataTable dt = new DataTable("GridView_Data");
            foreach (TableCell cell in gvPatientRoster.HeaderRow.Cells)
            {
                dt.Columns.Add(cell.Text);
            }
            foreach (GridViewRow row in gvPatientRoster.Rows)
            {
                dt.Rows.Add();
                for (int i = 0; i < row.Cells.Count; i++)
                {
                    dt.Rows[dt.Rows.Count - 1][i] = row.Cells[i].Text;
                }
            }
            if (dt != null && dt.Rows.Count > 0)
            {
                Response.ContentType = "application/vnd.ms-excel";
                Response.AppendHeader("Content-Disposition",
                    string.Format("attachment; filename=PatientRoster.xls"));

                System.IO.StringWriter tw = new System.IO.StringWriter();
                System.Web.UI.HtmlTextWriter hw =
                    new System.Web.UI.HtmlTextWriter(tw);
                DataGrid dgGrid = new DataGrid();
                dgGrid.DataSource = dt;

                //Report Header
                hw.WriteLine("<b><u><font size='5'>" +
                             "Patient Roster</font></u></b>");
                hw.WriteLine("<br><br>");
                //hw.Write(BuildCriteriaString());
                hw.WriteLine("<br>");
                // Get the HTML for the control.
                dgGrid.HeaderStyle.Font.Bold = true;
                dgGrid.DataBind();
                dgGrid.RenderControl(hw);

                // Write the HTML back to the browser.

                this.EnableViewState = false;
                Response.Write(tw.ToString());
                Response.End();
            }
        }
        catch (Exception ex)
        {
            lblErrorMessage.Text = ex.Message;
        }

    }

最佳答案

我将以下内容添加到PageLoad()中,导出现在可以使用:

ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);
scriptManager.RegisterPostBackControl(this.btnExportToExcel);


看来UpdatePanelScriptManager是我忽略的元素。当我从主应用程序中分离功能时,我没有包括主应用程序中的所有HTML。由于ScriptManagerUpdatePanel不是隔离功能的一部分,因此它可以正常工作。我一定会在下次发布HTML

这是来自以下帖子的解决方案:

Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed

10-05 21:11
查看更多