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
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))