首页 > 编程 > .NET > 正文

在ASP.NET中使用EXCEL之三 写Excel文件

2024-07-10 12:55:49
字体:
来源:转载
供稿:网友
 

在按钮的click事件中输入如下代码,即可以实现写入excel文件。

写excel文件时,还要把项目文件夹的权限进行设置,对iuser_machine用户有可写的权限。

private void button1_click(object sender, system.eventargs e)
  {string filename="";
   excel.applicationclass oexcel;
   oexcel = new excel.applicationclass();
   oexcel.usercontrol = false;
   excel.workbookclass wb = (excel.workbookclass) oexcel.workbooks.add(system.reflection.missing.value);
   for(int i = 1;i <= 5; i++)
   {
    oexcel.cells[i,1]=i.tostring();
    oexcel.cells[i,2]="'第2列";
    oexcel.cells[i,3]="'第3列";
    oexcel.cells[i,4]="'第4列";
   }  
   wb.saved = true;
   filename= request.physicalapplicationpath +  "test.xls";
   oexcel.activeworkbook.savecopyas(filename);
   oexcel.quit();
   system.gc.collect();
   response.redirect( request.applicationpath +  "/test.xls");
}
  

  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表