使用 Asp.Net MVC。
我有一个具有默认样式、边框等的 Excel 文件,它的名称是 MyExcel.xlsx。它从我的本地打开“C:\Users\myusername\Documents”。
这是我的 C# 代码:
Application excel = new Application();
excel.Visible = true;
Workbook wb = excel.Workbooks.Open("MyExcel.xlsx");
Worksheet sh = wb.Sheets[1];
我将文件上传到我的 Server 2012,例如 C:\MyExcel.xlsx。所以我想打开服务器端 MyExcel.xlsx 文件。
Server.MapPath("C:\MyExcel.xlsx");
但我收到“意外的 M”错误。我该如何修复此代码?
> string myServerPath = Server.MapPath("C:\MyExcel.xlsx");
> Application excel = new Application();
> excel.Visible = true;
> Workbook wb = excel.Workbooks.Open(myServerPath);
> Worksheet sh = wb.Sheets[1];