Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Aug 07, 2003 07:50 AM by ywang27
Member
20 Points
4 Posts
Aug 07, 2003 07:50 AM|LINK
Response.ContentType="application/vnd.ms-excel"; Response.AddHeader("Content-Disposition", "attachment;filename=SupplierProfile.xls;") ; Response.Charset=" "; Response.Buffer = false ; Page.EnableViewState=false; System.IO.StringWriter tw=new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter hw=new System.Web.UI.HtmlTextWriter(tw); dbGrid1.RenderControl(hw); Response.Write(tw.ToString()); Response.End();
ywang27
Member
20 Points
4 Posts
globalization problem? Chinese words can't be displayed correctly after export to Excel file
Aug 07, 2003 07:50 AM|LINK
Response.ContentType="application/vnd.ms-excel"; Response.AddHeader("Content-Disposition", "attachment;filename=SupplierProfile.xls;") ; Response.Charset=" "; Response.Buffer = false ; Page.EnableViewState=false; System.IO.StringWriter tw=new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter hw=new System.Web.UI.HtmlTextWriter(tw); dbGrid1.RenderControl(hw); Response.Write(tw.ToString()); Response.End();