在RowDataBound事件中:
if (e.Row.RowType == DataControlRowType.DataRow) { //第一列格式为人民币 e.Row.Cells[ 0].Attributes.Add("style", "vnd.ms-excel.numberformat:¥#,##0.00"); //常用一些格式: //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% } 原文出自:http://blog.sina.com.cn/s/blog_5e06afe00100gvsj.html |
C# 导出Excel 格式化
最新推荐文章于 2020-12-30 15:42:20 发布