欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net Grid 导出Excel实现程序代码

程序员文章站 2024-03-05 23:40:13
1. aspx后台代码输出content type信息 复制代码 代码如下: response.clearcontent(); response.addheader("co...
1. aspx后台代码输出content type信息

复制代码 代码如下:

response.clearcontent();
response.addheader("content-disposition", "attachment; filename=myexcelfile.xls");
response.contenttype = "application/excel";
response.write(getgridtablehtml(grid1));
response.end();2. 直接输出html代码
response.write(@"
<table border="1">
<tr>
<td>excel</td>
<td>by html</td>
</tr>
</table>")


这样的实现对于简单的导出数据到excel已经足够了。

用法很简单
引入 bootstrap.js 和压缩包里的 export-all.js 就可以使用了
具体可以参考 main.js (下面是定义grid的时候 指定一个toolbar 为 xtype: 'exporterbutton')

复制代码 代码如下:

height: 350,
width: 600,
title: 'array grid',
renderto: 'grid-example',
viewconfig: {
striperows: true
},
dockeditems: [
{
xtype: 'toolbar',
dock: 'top',
items: [
{
xtype: 'exporterbutton',
store: mystore

//一下两项配置 已在buttion.js中 配置了默认路径 不需要重复指定
//swfpath: './downloadify.swf',
//downloadimage: './download.png',

//这里可以根据当表格 给 定制导出的文件名
//downloadname:'导出的excel 名字'
}
]
}
]