Asp.net中的GridView匯出遇到的兩個問題和解決方案

來源:互聯網
上載者:User

對於GridView匯出的內容的代碼大致如下:
Response.Clear();
Response.Buffer = true;
Response.Charset = "GB2312";
Response.AppendHeader("Content-Disposition", "attachment;filename=" + fileName + ".xls");
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
Response.ContentType = "application/ms-excel";
this.EnableViewState = false;
System.Globalization.CultureInfo myCItrad = new System.Globalization.CultureInfo("ZH-CN", true);
System.IO.StringWriter oStringWriter = new System.IO.StringWriter(myCItrad);
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
this.grid1.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
Response.End();
//grid1為表格的ID

注:藍色標識代碼為出錯的那行代碼。
OK,好不容易敲完代碼,運行程式測試。蹬,報錯了。
問題一:類型“Grid1”的控制項“gvCompareDetail”必須放在具有 runat=server 的表單標記內。
注:Grid1為表格的ID。

尋找網上的解決大致為:
1)把Grid放到<form runat="server"></form>間。
2)給Grid加標記runat="server"。
查明前台Grid確實有加標記runat="server"的,而且表格是放在form中的。
解決方案:在後台代碼加上以下重寫方法
public override void VerifyRenderingInServerForm(Control control)
{ }
尋找MSDN說明,該函數的作用在於:確認在運行時為指定的 ASP.NET 行動控制項呈現 Form 控制項。
文法:
C# 複製代碼 代碼如下:public override void VerifyRenderingInServerForm(
Control control
)

參數
control
類型:System.Web.UI..::.Control
必須位於 Form 控制項中的 ASP.NET 行動控制項。
備忘
如果在運行時控制項未包含在 Form 中,則此方法將重寫 Page..::.VerifyRenderingInServerForm 方法以引發異常。
如果回傳或使用用戶端指令碼的伺服器控制項沒有包含在 HtmlForm 伺服器控制項 (<form runat="server">) 標記中,它們將無法正常工作。這些控制項可以在呈現時調用該方法,以在它們沒有包含在 HtmlForm 控制項中時提供明確的錯誤資訊。
開發自訂伺服器控制項時,通常在為任何類型的輸入標記重寫 Render 方法時調用該方法。這在輸入控制項調用 GetPostBackEventReference 或發出用戶端指令碼時尤其重要。複合伺服器控制項不需要作出此調用。
OK,加上以上的函數,編譯運行調試。暈,又出現了別外一個錯誤。

問題二:只能在執行 Render() 的過程中調用 RegisterForEventValidation。

看樣子,以上加的那個函數並沒有徹底解決問題了。
經過一番搜尋和嘗試,終於把問題解決了。

解決方案1:把上面的函數VerifyRenderingInServerForm去掉,在匯出代碼中,動態添加一個Form對象,一個Page對象,把表格加入它,並把Form添加給Page。
匯出的代碼如下: 複製代碼 代碼如下:Page p=new Page();
HtmlForm form=new HtmlForm();
Grid1.EnableViewState = false;
p.EnableEventValidation = false;
p.DesignerInitialize();
form.Controls.Add(Grid1);
p.Controls.Add(form);
StringBuilder sb=new StringBuilder();
StringWriter sw=new StringWriter(sb);
p.RenderControl(sw);
Response.Clear();
Response.Buffer = true;
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName + ".xls");
Response.Charset = "UTF-8";
Response.ContentEncoding = Encoding.Default;
Response.Write(sb.ToString());
Response.End();

解決方案2:修改web.config(不推薦)<pages enableEventValidation ="false" ></pages>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.