在这里,我打开excel并写入excel表.我正在将我的
Windows应用程序更改为asp网站并看到此错误.我添加了所有引用和库.不知道我在这里失踪了什么.
如下所述获得错误.请帮我.
Excel.Application excel = new Excel.Application(); excel.Visible = false; // to hide the processing Excel.Workbook wb = excel.Workbooks.Add(); Excel.Worksheet sh = wb.Sheets.Add(); // Error at wb sh.Name = "Links"; for (int i = 1; i < list.Count; i++) { sh.Cells[i.ToString(),"A"].Value2 = list[i]; //Error at .Value2 }
解决方法
您必须通过提供工作表名称来创建带有Sheets数组的新工作表.
并请铸造新创建的工作表.
并请铸造新创建的工作表.
替换这个:
Excel.Worksheet sh = wb.Sheets.Add();
以下
Excel.Worksheet sh = (Microsoft.Office.Interop.Excel.Worksheet)wb.Sheets["Sheet1"];