博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Aspose插件将程序中的表格,导出生成excel表格
阅读量:5824 次
发布时间:2019-06-18

本文共 1629 字,大约阅读时间需要 5 分钟。

http://www.cnblogs.com/lanyue52011/p/3372452.html这个是原文地址 ///         /// 点击按钮,将内存表导出excel表格!        ///         ///         ///         protected void Button1_Click(object sender, EventArgs e)        {//这三行是原文中所没有的,不设置license的话,会有warning,至于liscense文件,百度云中有!            Aspose.Cells.License li = new Aspose.Cells.License();            string path = Server.MapPath("License.lic");            li.SetLicense(path); //这三行是原文中没有的……            Aspose.Cells.Workbook book = new Aspose.Cells.Workbook();            Aspose.Cells.Worksheet sheet = book.Worksheets["Sheet1"];            sheet.FreezePanes(1, 1, 1, 0);            Aspose.Cells.Style style = book.Styles[book.Styles.Add()];            style.Pattern = Aspose.Cells.BackgroundType.Solid;            style.Borders.SetStyle(Aspose.Cells.CellBorderType.Thin);            style.Borders.SetColor(System.Drawing.Color.LightSteelBlue);            style.IsTextWrapped = true;            style.Font.Size = 10;            Aspose.Cells.StyleFlag flag = new Aspose.Cells.StyleFlag();            flag.All = true;            sheet.Cells.ApplyStyle(style, flag);            style.VerticalAlignment = Aspose.Cells.TextAlignmentType.Center;            style.Font.IsBold = true;            flag.All = true;            sheet.Cells.Rows[0].ApplyStyle(style, flag); sheet.Cells.ImportDataTable(datas, true, 0, 0, datas.Rows.Count, datas.Columns.Count, false, "yyyy-MM-dd", false);            book.Save(DateTime.Now.ToString("yyyyMMddhhmmss") + ".xlsx", Aspose.Cells.FileFormatType.Excel2007Xlsx, Aspose.Cells.SaveType.OpenInExcel, Response);        }

 

转载于:https://www.cnblogs.com/vichin/p/5967764.html

你可能感兴趣的文章
被需求搞的一塌糊涂,怎么办?
查看>>
c_数据结构_队的实现
查看>>
jquery 选择器总结
查看>>
1月10日,11日工作情况
查看>>
Qt设置背景图片
查看>>
Grunt使用心得
查看>>
【阿里云文档】常用文档整理
查看>>
iptables 配置需要保存
查看>>
.NET各种小问题
查看>>
ApkTool反编译和重新打包
查看>>
OpenState: Programming Platform-independent Stateful OpenFlow Applications Inside the Switch
查看>>
java中的Volatile关键字
查看>>
前端自定义图标
查看>>
sqlserver 取取月初月末和月份间隔
查看>>
Vagrant的一个BUG - 不支持'change_host_name'
查看>>
实验二
查看>>
独立开发一个云(PaaS)的核心要素, Go, Go, Go!!!
查看>>
java的继承性
查看>>
tomcat 实例
查看>>
MyBatis使用DEMO及cache的使用心得
查看>>