How to add view in MVC 4
asp.net, asp.net-mvc, asp.net-mvc-4, c#, razor
Solution
Try going to controller, right click on Action name `UserAdd()` and select Add View..
Problem
I'm making a simple mvc application using this tutorial. I'm having problem when I'm trying to add view named UserAdd In my case add view window does not appear in which we select view engine, model class and scaffold template. What I'm doing is: - right click on models folder - then add then new item - then select mvc4 view page (razor) - name it UserAdd - click add button When I click add button it opens the UserAdd.cshtml page directly. My question is: How to open that add view window?