データグリッドをエクスポートしようとしています。コードを使用して データグリッドをエクスポートする際にエラーが発生しました
Response.Clear();
Response.AddHeader("content-disposition", "attachment;filename=Salary_JV_Posting_For_PG_.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.xls";
System.IO.StringWriter stringWrite = new System.IO.StringWriter();
stringWrite.Write(" <b><font color=#336699 size = 25px><u>test</u></font></b> ");
stringWrite.Write(Environment.NewLine);
stringWrite.Write(Environment.NewLine);
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
Response.Flush();
dgLine.RenderControl(htmlWrite);
Response.Write(stringWrite.ToString());
Response.End();
私はデバッグを試みたが、最後の行(Response.Endの)を実行すると、次のエラーが、私はAJAXを使用しています
Data = Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.
表示されます。
はクマー