vote up 2 vote down star
1

I'm wondering if anyone has any experience converting User controls to Web controls?

Ideally, I'd like to offload some of the design work to others, who would give me nicely laid out User Controls. Then, I could go through the process of converting, compiling, testing and deploying.

Until MS comes up with the magic "Convert to Server Control" option, it looks like I'm pretty well stuck with re-writing from scratch. Any ideas?

flag

What would be wrong with using the User controls ? If you need to share logic, you could have the .ascx files inherit from a base class which you define in a class library, so that the logic can be easily reused; while maintaining a flexible visual design that can be easily changed. – driis Jun 1 at 16:05

2 Answers

vote up 2 vote down check

Is there a reason you must convert these user controls to server controls? Remember that it is possible to compile a user control into an assembly.

link|flag
Also msdn.microsoft.com/en-us/library/… – Aidan Jun 11 at 17:11
vote up 1 vote down

You are right there is no magic bullet here but since you already have a User Control its not that difficult.

  1. Make sure all properties, events, etc. are set in the code behind since you won't have any mark up when you're done
  2. Create a new Server Control
  3. Paste all of the event handling and property setting code into the new control
  4. override the Render method for each child control call the RenderControl Method passing in the supplied HtmlTextWriter

    protected override void Render(HtmlTextWriter writer)
    {
    	TextBox box = new TextBox();
    	//Set all the properties here
    	box.RenderControl(writer);
    	base.Render(writer);
    }
    
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.