这是我下载Excel文件的代码。
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.Charset = "";
HttpContext.Current.Response.ContentType = "application/ms-excel";
HttpContext.Current.Response.AppendHeader("content-disposition", "attachment ; filename=report.xlsx");
我想在Excel中打开它。
答案 0 :(得分:1)
您可以在html页面中使用像
这样的视图命令链接<a href="ms-excel:ofv|u|http://contoso/Q4/budget.xls">Open in Excel</a>
如果计算机上安装了办公室,这些链接也可以使用(在移动设备上也是如此)。