Reputation: 11
I want to make an asp.net mvc project but there is no tab of 'web' it is i followed newProject->visual c#-> but there is no web tab... help!!
Upvotes: 1
Views: 2026
Reputation: 1221
Please go to the store folder of those templates like C:\Program Files (x86)\Microsoft Visual Studio 13.0\Common7\IDE\ProjectTemplates and check the existing of the templates, then use the following command to restore the default templates in VS.
please see here: https://msdn.microsoft.com/en-us/library/ms247116(v=vs.100).aspx
Open an administrative CMD window and navigate to C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE and run the below command as administrator:
devenv /installvstemplates
In Between, you can go to the Control Panel/Programs and Features and right-click the VS 2013 item and choose change-modify, check or re-check the option ‘Microsoft Web Developer Tools’ like below screenshot.
After that, reopen VS and see if the web template appears or not.
Please let me know, If the issue still persists.
Upvotes: 2