-
这是我现在用的方法
/// 导出方法 /// </summary> /// <param name="GridView"></param> /// <param name="filename">保存的文件名称</param> private void ExportGridViewForUTF8(GridView GridView, string filename) { string attachment = "attachment; filename=" + filename; Response.ClearContent(); Response.Buffer = true; Response.AddHeader("content-disposition", attachment); Response.Charset = "UTF-8"; Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); Response.ContentType = "application/ms-excel"; System.IO.StringWriter sw = new System.IO.StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); GridView.RenderControl(htw); Response.Output.Write(sw.ToString()); Response.Flush(); Response.End(); }
这是我用这个方法实现的效果
现在我想让他把后面分页的5224条数据,全显示在一个Excel表里
应该怎么写啊 大佬们
*
asp.net gridview 导出Excel 分页???
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- 发个福福 2018-09-25 07:26关注
如果你不想去掉网页的分页 可以向下面 加上前两句代码 重新从数据源查一遍数据 ,gridview 的属性allowpaging 设为false 不会影响网页分页 private void ExportGridViewForUTF8(GridView GridView1, string filename) { GridView1.AllowPaging = false; bind();//重新为gridview 绑定数据 string attachment = "attachment; filename=" + filename; Response.ClearContent(); Response.Buffer = true; Response.AddHeader("content-disposition", attachment); Response.Charset = "UTF-8"; Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); Response.ContentType = "application/ms-excel"; System.IO.StringWriter sw = new System.IO.StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); GridView1.RenderControl(htw); Response.Output.Write(sw.ToString()); Response.Flush(); Response.End(); }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 代写uni代码,app唤醒
- ¥15 全志t113i启动qt应用程序提示internal error
- ¥15 ensp可以看看嘛.
- ¥80 51单片机C语言代码解决单片机为AT89C52是清翔单片机
- ¥60 优博讯DT50高通安卓11系统刷完机自动进去fastboot模式
- ¥15 minist数字识别
- ¥15 在安装gym库的pygame时遇到问题,不知道如何解决
- ¥20 uniapp中的webview 使用的是本地的vue页面,在模拟器上显示无法打开
- ¥15 网上下载的3DMAX模型,不显示贴图怎么办
- ¥15 关于#stm32#的问题:寻找一块开发版,作为智能化割草机的控制模块和树莓派主板相连,要求:最低可控制 3 个电机(两个驱动电机,1 个割草电机),其次可以与树莓派主板相连电机照片如下: