Using Html instead of csHtml

前端 未结 5 2118
我寻月下人不归
我寻月下人不归 2020-12-16 12:46

I want to use pure html page instead of cshtml with MVC .net. But when I add view by right clicking Index i can see only two options.

 public class HomeContr         


        
5条回答
  •  自闭症患者
    2020-12-16 13:31

    In order to render plain HTML file you can use

    return new FilePathResult(HtmlPath, "text/html");
    

    where HtmlPath is

    Server.MapPath(string.Format("~/Views/{0}/{1}.html", YourControllerName, YourHtmlfileName))
    

提交回复
热议问题