Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How To Develope User Controls. like to drag and drop that controls in to forms.and set the properties and event on to that controls and also to manage the workflow using that controls,,,

In advance thanks.
Posted
Updated 3-Jun-11 0:42am
v3
Comments
Awadhendra Tripathi 31-May-14 2:29am    
You can develop user controls and you can do design part easily but for there property and event you have to write code for that follow the link below that are in solutions
HardikPatel.SE 31-May-14 8:08am    
Try this...
http://www.codeproject.com/Articles/8177/Drag-and-Drop-in-UserControls

Start here[^].
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 3-Jun-11 23:44pm    
A 5.
--SA
 
Share this answer
 
v2
You can create user control as add->;New Item->;WebUserControl
Here you can create controls as you needed
then just add the user control to your page as,
<%@ Register Src="../Controls/UserContrl.ascx" TagName="UsrCntrl" TagPrefix="uc1" %>;


Then in your body section
just use
<uc1:UsrCntrl  runat="server" id="us" />


If you have any doubt.feel free to ask..
 
Share this answer
 
v4
I guess you looking for custom control. Here is link to getting started with

http://www.akadia.com/services/dotnet_user_controls.html[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900