With new ASP.NET 4.5 in VS 2013 I do not see project template for creating server control. Does any one have idea how to create custom control in asp.net 4.5?
Asked
Active
Viewed 1,240 times
1 Answers
3
There are multiple ways of creating a Custom Server Control in ASP.Net.
All depends on your requirements - inherit from WebControl, CompositeControl or existing Server Control.
If you are looking for a template, go to Web > Web Forms Server Control
.
FYI: Creating a Custom Server Control requires some degree of experiences. If you are new to ASP.Net, I'll suggest you to look at User Controls.
Update: How to Create Web Forms Project in VS 2013

Win
- 61,100
- 13
- 102
- 181
-
Which version of visual studio you are using? I do not see this template on VS 2013. – Jai Jun 01 '15 at 20:40
-
It is Visual Studio 2013 - Web Forms Project. I update the answer with screenshots. – Win Jun 01 '15 at 21:19
-
Thanks, I was trying to find project template instead of new item – Jai Jun 01 '15 at 21:47