GridView导出Excel常见的5种文本格式 原创
程序员文章站
2023-12-20 11:08:28
1) 文本:vnd.ms-excel.numberformat:@
2) 日期:vnd.ms-excel.numberformat:yyyy/mm/dd
3) 数字:v...
1) 文本:vnd.ms-excel.numberformat:@
2) 日期:vnd.ms-excel.numberformat:yyyy/mm/dd
3) 数字:vnd.ms-excel.numberformat:#,##0.00
4) 货币:vnd.ms-excel.numberformat:¥#,##0.00
5) 百分比:vnd.ms-excel.numberformat: #0.00%
用法:在gridview的rowdatabound事件中加入代码e.row.cells[0].attributes.add("style", "vnd.ms-excel.numberformat:@");