0

I'm using Visual Studio 2013 V 12.0.3

I've created a folder inside my project and when I right-click on the folder and select "Add", I'm not seeing "Web User Control" in that menu. Does anyone know how I can get it back? It's typically listed right below "Web Form".

Dana Victoria
  • 71
  • 1
  • 1
  • 10
  • Add -> New Item -> type "web user control" in the search box in the upper right hand corner -> The Aristocrats. –  Apr 22 '15 at 19:51
  • I only see "Web Forms User Control"....am I missing something inside VS? – Dana Victoria Apr 22 '15 at 19:58
  • That's the same thing. –  Apr 22 '15 at 19:59
  • On another installation, I've seen both "web Form" as well as "web user control" ....(I'm a newbie here so excuse my ignorance). Thanks! – Dana Victoria Apr 22 '15 at 20:03
  • The only asp.net user control is for web forms. The other version of asp.net is MVC, which specifically does away with the whole web forms paradigm. –  Apr 22 '15 at 20:04

1 Answers1

1

To find any template, simply do the following:

Right-click in the Project where you wish to add -> Add -> New Item

When the Add new Item dialog appears, type "web user control" (or whatever) in the search box in the upper right hand corner

enter image description here

In your case, "web user control" should show you the correct template. As mentioned in the comments, there's only one flavor of web user controls, and that's for web forms.