ASP.NET:如何把Gridview中的数据导出到EXCEL表格(使用默认格式) 60

我导出的EXCEL文件都是带边框的,我现在只想导出为无任何格式的EXCEL文件,该如何实现啊?参考代码:protectedvoidButton1_Click(object... 我导出的EXCEL文件都是带边框的,我现在只想导出为无任何格式的EXCEL文件,该如何实现啊?
参考代码:
protected void Button1_Click(object sender, EventArgs e)
{
System.Web.UI.Control ctl = this.GridView1;
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset = "UTF-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType = "application/ms-excel";
ctl.Page.EnableViewState = false;
System.IO.StringWriter tw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
}
public override void VerifyRenderingInServerForm(Control control)
{
// Confirms that an HtmlForm control is rendered for
}
现在我知道他导出的是HTML格式的(用记事本可以打开),所以才会带边框,现在我想要的是导出EXCEL的标准格式(也就是用记事本打开是乱码的那种)
参考网站:http://www.cnblogs.com/pbwf/archive/2007/05/26/761094.html
展开
 我来答
冰火战地
2008-10-17 · TA获得超过141个赞
知道小有建树答主
回答量:416
采纳率:0%
帮助的人:179万
展开全部
System.Web.UI.Control ctl=this.DataGrid1;
//DataGrid1是你在窗体中拖放的控件
HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset ="UTF-8";
HttpContext.Current.Response.ContentEncoding =System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType ="application/ms-excel";
ctl.Page.EnableViewState =false;
System.IO.StringWriter tw = new System.IO.StringWriter() ;
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter (tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
百度网友9bea0d3
2008-10-03 · 超过17用户采纳过TA的回答
知道答主
回答量:86
采纳率:0%
帮助的人:0
展开全部
设置GridView里面的属性 有个borderstyle 和 CellPadding 都设置成0
就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
caocjc222
2008-10-03 · TA获得超过114个赞
知道答主
回答量:224
采纳率:0%
帮助的人:169万
展开全部
不清楚~~~麻烦给我分吧~~
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式