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?
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.