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
You can create a View with a regular cshtml file add it to the controller and in the View itself just use pure html and add the following to the top:
@{ Layout = null; }
This way you use a cshtml file that doesn't use you master layout file. And just serves whatever html you put in it.