vote up 1 vote down star
1

ASP.NET master pages - essential things.

However, I have a lot of very similar UserControls in my projects - it might be a standard layout for an AJAX ModalPopup, or something more involved.

I wish I could get rid of some of my duplicated code (both in ascx files and code-behind) with some Master UserControls.

Does anyone have any suggestions of a way to achieve this?

flag

77% accept rate

3 Answers

vote up 1 vote down check

The closest thing I can suggest for what you are looking for is a templated custom control. Unfortunately, sharing controls across projects is a lot easier if those things are custom controls, without an ascx file.

link|flag
vote up 0 vote down

Inheritance. You build the base control as a base class, and then inherit from it.

link|flag
1  
I have done this for the code-behind side of things (i.e. my UserControl.ascx.cs file inherits from my BaseUserControl rather than System.Web.UI.UserControl. However, this does help me in terms of adding standard HTML and server controls to my base control. – Richard E Dec 2 '08 at 15:26
vote up 0 vote down

You could also place nested user control on a place holder control in a "master" user control. Use Load method that accepts virtual path to ascx file to load appropriate control.

link|flag

Your Answer

Get an OpenID
or

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