views:

68

answers:

4

I am looking for a good books or online material about this topic.
I am not talking about user control or server control that extend existing controls.

A completely new control with a visual content when it's placed on page in design view (like grid view)

i have a basic knowledge creating dll libraries in c# and now i want to learn more :)

UPDATE:
I've seen some ASP.NET controls created as "Class Library" and not "ASP.NET Server Control" project.

What is the difference?

+3  A: 

Take a look at Nikhil Kothari's Developing Microsoft ASP.NET Server Controls and Components.

Canavar
A: 

Check these links ->

Bhaskar
Those are c# controls for Win forms apps, I need controls for web apps.
http://www.devhood.com/Tutorials/tutorial_details.aspx?tutorial_id=2
Bhaskar
for user control --> http://www.codersource.net/asp_net_web_user_controls.html
Bhaskar
those talks about custom user controls, i don't need :)
A: 

Read here about how to add designtime support for ASP.NET controls:

http://msdn.microsoft.com/en-us/library/aa478960.aspx

noesgard