柴门鸟雀噪,归客千里至。光明顶下来,一路听着阵阵松涛,我们走过西海,飞来石,天海,爬过百步云梯,伴着凤凰松迎客松的多姿到了玉屏峰。玉屏峰犹如一道屏障,山面光滑如镜子,如屏风,还不时有几个斗大的字,说是哪位名人留下的。玉屏峰最险的地方是在一线天,上下达七八十度的落差,台阶狭,仅容一人,台阶窄,仅托一足,百米长,走多了,腿便打抖了,害怕了,还不时地叫着好刺激呀。
1. Aspx后台代码输出Content Type信息 这样的实现对于简单的导出数据到Excel已经足够了。 用法很简单
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>")
引入 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 名字'
}
]
}
]
以上就是asp.net Grid 导出Excel实现程序代码。吃醋是因为喜欢,生气是因为在乎,发呆是因为想念,伤心是因为不想失去。更多关于asp.net Grid 导出Excel实现程序代码请关注haodaima.com其它相关文章!