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

GridView导出Excel实现原理与代码

程序员文章站 2024-03-04 17:45:54
为了完成领导交代的任务,这几天都在做数据展现,因为时间比较紧,所以也没做太复杂,使用gridview来展示数据库表。几乎没对gridview的格式做什么设定,从配置文件中加...
为了完成领导交代的任务,这几天都在做数据展现,因为时间比较紧,所以也没做太复杂,使用gridview来展示数据库表。几乎没对gridview的格式做什么设定,从配置文件中加载sql,跑出数据就直接绑定到gridview。发现了一些问题,比如gridview的自动绑定列的宽度是没法设定的,而此时gridview的表格输出是不带宽度信息的,所以导致表格列比较多的时候显示起来会挤到页面里面很难看,由于表的列数并不是固定的,所以也没法很简单的用模版列的方式做,最后只好直接将表格宽度设置成一个很大的数了事。

此外做了个导出excel的功能,主要代码如下

复制代码 代码如下:

private void dumpexcel(gridview gv, string filename)
{//带格式导出
string style = @"<style> .text { mso-number-format:\@; } </style>";
response.clearcontent();
response.charset = "gb2312";
response.contentencoding = system.text.encoding.utf8;
response.addheader("content-disposition", "attachment; filename=" + httputility.urlencode(filename, encoding.utf8).tostring());
response.contenttype = "application/excel";
stringwriter sw = new stringwriter();
htmltextwriter htw = new htmltextwriter(sw);
gv.rendercontrol(htw);
// style is added dynamically
response.write(style);
response.write(sw.tostring());
response.end();
}
public override void verifyrenderinginserverform(control control)
{
}

上面的行17的重载函数是必须的,否则会报“gridview要在有run=server的from体内”的错。
此外,变量style的作用是控制gridview列的样式,避免发生excel表中字符前导0被当成数字给截掉这样的问题, 通过response.write方法将其添加到输出流中。最后把样式添加到id列。这一步需要在rowdatabound事件中完成:
复制代码 代码如下:

1protected void gvusers_rowdatabound(object sender, gridviewroweventargs e)
{
if (e.row.rowtype == datacontrolrowtype.datarow)
{
e.row.cells[1].attributes.add("class", "text");
}
}