Controller return 返回 .html頁面

如上圖(我從網上的截圖)所示,不少狀況下可能不須要一個渲染的頁面,因此須要返回一個  .html  的頁面,可是ASP.NET只識別渲染的頁面,而不識別  .html 的頁面。html

因此想返回的話用以下方法:spa

ASP.NET MVC3d

public ActionResult Index() { return new FilePathResult("~/content/index.html", "text/html"); }

ASP.NET Core MVCcode

public IActionResult Index() { return File("~/index.html", "text/html"); }
相關文章
相關標籤/搜索