在asp.net mvc4中显示word / excel文件内容

我是初学ASP.net MVC4 。 我试图在我的网页上显示word和excel文件的内容。 我在HomeController编写了这个函数,但是没有显示内容。 它只下载文件。 我怎样才能在我的网页预览文件? 谢谢

 [HttpGet] public FileResult downloadFile() { byte[] fileBytes = System.IO.File.ReadAllBytes("J:\\asp.net\\ViewInformation\\ViewInformation\\Content\\book.xlsx"); return File(fileBytes, "application/vnd.ms-excel", "book.xlsx"); } 

在过去我使用Microsoft.Office.Interop.Excel.Application。

 excelApp = new Microsoft.Office.Interop.Excel.Application(); excelApp.Workbooks.Open(filePath); 

然后访问像这样的单元格:

 int newId = Convert.ToInt32(values[i, GetColumnPosition(newIdColumn)]); int oldId = Convert.ToInt32(values[i, GetColumnPosition(oldIdColumn)]); 

哪里

 public static int GetColumnPosition(char alpha) { return char.ToUpper(alpha) - 64; } 

 private const char oldIdColumn = 'F'; private const char newIdColumn = 'A'; 

一些资源: