ASP.net中导出Excel的简单方法介绍
下面介绍一种ASP.net中导出Excel的简单方法
先上代码:前台代码如下(这是自己项目里面写的一点代码先贴出来吧)
<!--startprint-->
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" style="word-break: break-all;">
<tr>
<td align="center" colspan="7" valign="middle" style="font-size: 14px; font-family: 宋体; font-weight: bold;
height: 30px">
<span id="spanYEAR" runat="server"></span>年<span id="spanMONTH" runat="server"></span>月分公司月度需求生产任务汇总
</td>
</tr>
<tr>
<td align="right" valign="middle" colspan="7">
<table width="100%">
<tr>
<td colspan="2" align="left">
数量单位:支
</td>
<%-- <td width="10%" align="center" style="font-weight: bold;">
</td>--%>
<td width="20%" align="center" style="font-weight: bold;">
</td>
<td width="25%" colspan="2" align="center">
</td>
<td width="40%" colspan="2" align="center">
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" style="font-size: 12px;
font-family: 宋体; word-break: break-all;">
<tr>
<td colspan="4" align="left" valign="top">
<div id="div" runat="server">
<table width="100%" border="1" align="center" cellpadding="0" cellspacing="0" style="font-family: 宋体;
word-break: break-all;">
<tr>
<td width="8%" align="center" style="font-weight: bold; height: 25px">
序号
</td>
<td width="20%" align="center" style="font-weight: bold;">
硒鼓型号
</td>
<td width="12%" align="center" style="font-weight: bold;">
硒鼓类别
</td>
<td width="15%" align="center" style="font-weight: bold;">
第一批次
</td>
<td width="15%" align="center" style="font-weight: bold;">
第二批次
</td>
<td width="15%" align="center" style="font-weight: bold;">
第三批次
</td>
<td width="15%" align="center" style="font-weight: bold;">
第四批次
</td>
</tr>
<asp:Repeater ID="rptXQPC" runat="server">
<ItemTemplate>
<tr>
<td width="8%" align="center" height="25px">
<%#Eval("ROWID")%>
</td>
<td width="20%" align="center">
<%#Eval("xgxh")%>
</td>
<td width="12%" align="center">
<%#Eval("XGLB")%>
</td>
<td width="15%" align="center">
<%#Eval("First")%>
</td>
<td width="15%" align="center">
<%#Eval("Second")%>
</td>
<td width="15%" align="center">
<%#Eval("Third")%>
</td>
<td width="15%" align="center">
<%#Eval("Fourth")%>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
<tr>
<td colspan="3" width="40%" align="right" style="font-weight: bold; height: 25px">
批次合计:
</td>
<td width="15%" align="center" style="font-weight: bold;">
<div id="divFirst" runat="server"></div>
</td>
<td width="15%" align="center" style="font-weight: bold;">
<div id="divSecond" runat="server"></div>
</td>
<td width="15%" align="center" style="font-weight: bold;">
<div id="divThird" runat="server"></div>
</td>
<td width="15%" align="center" style="font-weight: bold;">
<div id="divFourth" runat="server"></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
<!--endprint-->
</div>
后台代码如下 :
绑定Repeater数据这里接就不多做介绍了(用的Repeater嵌套)
下面贴出后台导出Excel的方法:
/// 将数据导出到excel,与下面的函数同时使用才能正常工作
/// </summary>
/// <param name="ctl"></param>
public void ToExcel(System.Web.UI.Control ctl)
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Charset = "";
string filename = "Report" + System.DateTime.Now.ToString("_yyyyMMddHHmm");
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" +
System.Web.HttpUtility.UrlEncode(filename, System.Text.Encoding.UTF8) + ".xls");
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;
HttpContext.Current.Response.ContentType = "application/ms-excel";//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword
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();
}
后台导出Excel时直接调用为 ToExcel(this.export); 这里的export是加了runat="server"的div名称,
这句代码的意思是调用ToExcel的方法导出export里面的页面数据(页面上的数据是怎么展示的,导出来以后的Excel数据会以同样的方式展示)
ASP.net中导出Excel的简单方法介绍的更多相关文章
- asp.net中导出excel数据的方法汇总
1.由dataset生成 代码如下 复制代码 public void CreateExcel(DataSet ds,string typeid,string FileName) { Htt ...
- asp.net中导出Excel的方法
一.asp.net中导出Excel的方法: 本文转载 在asp.net中导出Excel有两种方法,一种是将导出的文件存放在服务器某个文件夹下面,然后将文件地址输出在浏览器上:一种是将文件直接将文件输出 ...
- C# asp.net中导出Excel表时总出现"只能在执行 Render() 的过程中调用 RegisterForEventValidation
C# asp.net中导出Excel表时总出现"只能在执行 Render() 的过程中调用 RegisterForEventValidation 后台添加以下方法:/// <summa ...
- Asp.net中导出Excel文档(Gridview)
主要思路,通过GridView来导出文档. 新建一个Aspx页面,页面创建GridView控件,后台绑定好数据源.然后load中直接打印即可导出 前台的GridView <asp:GridVie ...
- 导出excel的简单方法
excel的操作,最常用的就是导出和导入,废话不多说上代码. 本例使用NPOI实现的,不喜勿喷哈.... /// <summary> /// 导出Excel /// </summar ...
- spring mvc项目中导出excel表格简单实现
查阅了一些资料,才整理出spring mvc 项目导出excel表格的实现,其实很是简单,小计一下,方便以后查阅,也希望帮助有需要的朋友. 1.导入所需要依赖(Jar包).我使用的是maven,所以坐 ...
- ASP.Net的导出Excel的快速方法,DataTable导出Excel(亲测,非原创)
//使用方法 ExcelHelper.dataTableToCsv(dt,@"D:\1212.xls");System.Diagnostics.Process.Start(@&qu ...
- Asp.net 中高亮显示搜索关键字简单方法
今天用到搜索时的高亮显示,百度了一下,如下面: 1.替换关键字,对字体变色. public static string ReplaceRed(string strtitle, stri ...
- asp.net中导出Execl的方法
一.asp.net中导出Execl的方法: 在 asp.net中导出Execl有两种方法,一种是将导出的文件存放在服务器某个文件夹下面,然后将文件地址 输出在浏览器上:一种是将文件直接将文件输出流写给 ...
随机推荐
- typedef 优于 #define
案例一: 通常讲,typedef要比#define要好,特别是在有指针的场合.请看例子: typedef char *pStr1; #define pStr2 char *; pStr1 s1, s2 ...
- XtraBackup原理4
MySQL · 答疑解惑 · 物理备份死锁分析 背景 本文对 5.6 主备场景下,在备库做物理备份遇到死锁的case进行分析,希望对大家有所帮助. 这里用的的物理备份工具是 Percona-XtraB ...
- Linux守护进程(init.d和xinetd)
http://www.cnblogs.com/itech/archive/2010/12/27/1914846.html
- 【ZZ】大数据架构师基础:hadoop家族,Cloudera系列产品介绍
http://www.36dsj.com/archives/17192 大数据我们都知道hadoop,可是还会各种各样的技术进入我们的视野:Spark,Storm,impala,让我们都反映不过来.为 ...
- python读取文本、配对、插入数据脚本
#在工作中遇见了一个处理数据的问题,纠结了很久,写下记录一下.#-*- coding:UTF-8 -*- #-*- author:ytxu -*- import codecs, os, sys, pl ...
- 本地计算机上的XXX服务启动后停止。某些服务在未由其它服务或程序使用时将自动停止。咋整?
用C#写个windows服务,安装部署后去启动时,提示说“本地计算机上的XXX服务启动后停止.某些服务在未由其它服务或程序使用时将自动停止”.咋整?就像下面酱紫: 度娘说不知道咋整,我想把程序附加到w ...
- X-Sequence
Description Let {xi} be the infinite sequence of integers: 1) x0 = A; 2) xi = (alpha * xi-1^2 + beta ...
- 装饰者模式--《Head First DesignPattern》
装饰者模式动态地将责任附加到对象杭,若要拓展功能,装设置提供了比继承更有弹性的替代方案. 星巴兹有多种咖啡,它们具有不同的价格.在购买咖啡时,也可以要求在其中加入各种调料,例如豆浆.摩卡.奶泡等等.需 ...
- android一些基础知识
android应用基于JAVA, 支持SQL,由于底层是LINUX,所以支持C/C++ 目前有两种编程:基于ADT的JAVA编程,基于NDK的C编程 Android编程环境需要哪些:官方推荐用JDK+ ...
- lk启动流程详细分析
转载请注明来源:cuixiaolei的技术博客 这篇文章是lk启动流程分析(以高通为例),将会详细介绍下面的内容: 1).正常开机引导流程 2).recovery引导流程 3).fastboot引导流 ...