ASP.net中导出Excel的简单方法介绍

下面介绍一种ASP.net中导出Excel的简单方法

先上代码:前台代码如下(这是自己项目里面写的一点代码先贴出来吧)

<div id="export" runat="server" style="width: 700px; margin-left: auto; margin-right: auto;">
<!--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">

&nbsp;数量单位:支

</td>

<%-- <td width="10%" align="center" style="font-weight: bold;">

&nbsp;

</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的方法:

/// <summary>

/// 将数据导出到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数据会以同样的方式展示)

时间: 2024-12-19 01:00:19

ASP.net中导出Excel的简单方法介绍的相关文章

Asp.net中导出Excel文档(Gridview)

主要思路,通过GridView来导出文档. 新建一个Aspx页面,页面创建GridView控件,后台绑定好数据源.然后load中直接打印即可导出 前台的GridView <asp:GridView ID="GridView1" BorderColor="Black" runat="server" AutoGenerateColumns="False" Font-Size="12px" Width=&q

asp.net中导出Excel通用型

前端请求: <a class="btn btn-default ml-50" href="javascript:Out_Excel();">导出Excel</a> function Out_Excel() { var bdate = $("#tisStartTime").val(); var edate = $("#titsEndTime").val(); var useridx = $("#

ASP.Net的导出Excel的快速方法,DataTable导出Excel(亲测,非原创)

//使用方法 ExcelHelper.dataTableToCsv(dt,@"D:\1212.xls");System.Diagnostics.Process.Start(@"c:\1.xls"); //打开excel文件 public static void dataTableToCsv(DataTable table, string file) { string title = ""; FileStream fs = new FileStre

asp.net中导出Execl的方法

一.asp.net中导出Execl的方法: 在 asp.net中导出Execl有两种方法,一种是将导出的文件存放在服务器某个文件夹下面,然后将文件地址 输出在浏览器上:一种是将文件直接将文件输出流写给浏览器.在Response输出时,\t分隔的数据,导出 execl时,等价于分列,\n等价于换行. 1.将整个html全部输出execl 此法将html中所有的内容,如按钮,表格,图片等全部输出到Execl中.   Response.Clear();       Response.Buffer=  

asp.net DataTable导出 excel的方法记录(第三方)

官网:http://npoi.codeplex.com/ 简单应用,主要是可以实现我们想要的简单效果,呵呵 需要引入dll,可以在官网下载,也可在下面下载 C#代码   protected void getExcel(DataTable dt) { NPOI.HSSF.UserModel.HSSFWorkbook book = new NPOI.HSSF.UserModel.HSSFWorkbook(); NPOI.SS.UserModel.Sheet sheet = book.CreateSh

从SQL Server中导入/导出 Excel 的基本方法

/*=================== 导入/导出 Excel 的基本方法 ===================*/ 从Excel文件中,导入数据到SQL数据库中,很简单,直接用下面的语句: /*===================================================================*/ --如果接受数据导入的表已经存在 insert into 表 select * from OPENROWSET('MICROSOFT.JET.OLEDB.4.

在ASP程序中打印Excel报表的新方法

目前,B/S模式(浏览器/服务器模式)成为企业网上首选的计算模式.由于B/S模式的特殊性,在C/S下相对较易实现的Excel报表打印功能在B/S下却成为一个难点.本人通过研究写了一个基于ASP程序的打印Excel报表的程序.本程序的特点是无须任何组件. Print.asp ------------------------------------------------ <html><title>打印Excel报表</title> <% '控制脚本语言 respon

在asp.net中导出表格Excel数据

第一步:需要引用org.in2bits.MyXls程序集到使用页面 第二步:前台代码 <asp:Button ID="LeadingOut" runat="server" Text="导出"  onclick="LeadingOut_Click" /> 第三步:在aspx文件的后台写按钮的点击事件 protected void LeadingOut_Click(object sender, EventArgs e)

C#中datatable导出excel(三种方法)

方法一:(拷贝直接可以使用,适合大批量资料, 上万笔)Microsoft.Office.Interop.Excel.Application appexcel = new Microsoft.Office.Interop.Excel.Application();SaveFileDialog savefiledialog = new SaveFileDialog();System.Reflection.Missing miss = System.Reflection.Missing.Value;ap