造价通

反馈
取消

热门搜词

造价通

取消 发送 反馈意见

myxls使用示例

2018/06/19111 作者:佚名
导读: 1、添加引用到你的网站或项目中:2、一个导出excel的测试程序: /// <summary>/// 导出Excel/// </summary>/// <param name="sender"></param>/// <param name="e"></param>protecte

1、添加引用到你的网站或项目中:

添加Myxls引用到项目2、一个导出excel的测试程序:

/// <summary>

/// 导出Excel

/// </summary>

/// <param name="sender"></param>

/// <param name="e"></param>

protected void ExportBtn_Click(object sender, EventArgs e) {

XlsDocument xls = new XlsDocument();

xls.FileName = "TestList.xls";

int rowIndex = 1;

Worksheet sheet = xls.Workbook.Worksheets.Add("测试表");//Sheet名称

Cells cells = sheet.Cells;

Cell cell = cells.Add(1, 1, "编号");

cell.Font.Bold = true;

cell = cells.Add(1, 2, "名称");

cell.Font.Bold = true;

foreach (DataRow row in table.Rows) {

cells.Add(rowIndex, 1, rowIndex);

cells.Add(rowIndex, 2, "名称"+rowIndex);

rowIndex++;

}

xls.Send();

}

*文章为作者独立观点,不代表造价通立场,除来源是“造价通”外。
关注微信公众号造价通(zjtcn_Largedata),获取建设行业第一手资讯

热门推荐

相关阅读