ASP.NET Tip: Selecting a Master Page at Runtime Portland OR

Enable your Web application to select a master page dynamically at runtime based on whatever criteria you choose.

Local Companies

Cascade Custom Software
503-922-0135
1000 SW Broadway
Portland, OR
Advantyx Software LLC
503-246-9299
6501 SW Macadam Ave
Portland, OR
Aravo Solutions
503-224-4049
2627 NW Nicolai St
Portland, OR
Axis Clinical Software Inc
503-292-3022
6443 SW Beaverton Hillsdale Hwy
Portland, OR
ApogeeInvent
403.407.9915
9999 SW Wilshire St. Ste. 100
Portland, OR
Cendix
503.789.2676
501 4th Street, Suite 741
Lake Oswego, OR
Artisan Software Tools Inc
503-245-6200
10220 SW Greenburg Rd
Portland, OR
Vision33
971-255-0162
The Lincoln Center, 10260 SW Greenburg Road, 4th Floor
Portland, OR
Paradigma Software
(503) 574-2776
6107 SW Murray Blvd #151
Beaverton, OR
ClearStar.net
360-892-0687
915 Broadway
Vancouver, WA

provided by: 
Originally published at Internet.com


Master pages, introduced with ASP.NET 2.0, provide developers an easy way to create a shared layout for a site or portion of a site without having to work around Visual Studio .NET. While many sites will have a master page specified in each page by default, you can also design your site to select a master page dynamically. For example, an application I've created contains two master pages. Which one the user sees depends on which hostname he or she uses to visit the site. I do this so that the graphics and text are appropriate for the domain, but I have a single Web site servicing both domains behind the scenes.

The trick to selecting a master page at runtime is to add code into the OnPreInit event handler of your Web page. This is the point at which you can select the master page to be used for the particular Web page. For instance, you might have code that looks like this: protected override void OnPreInit(EventArgs e) { base.OnPreInit(e); if (Request.Url.Host.Contains("test.com")) base.MasterPageFile = Server.MapPath("test.com.master"); else base.MasterPageFile = Server.MapPath("test2.com.master"); }

The MasterPageFile property requires a pathname and not a URL reference. However, you can always use Server.MapPath to convert your URL into an actual filename.

This feature works quite well for the content management system I've built. Use it to allow a page to choose a different look on the fly, based on whatever criteria you choose.

About the Author

Eric Smith is the owner of Northstar Computer Systems, a Web-hosting company based in Indianapolis, Indiana. He is also a MCT and MCSD who has been developing with .NET since 2001. In addition, he has written or contributed to 12 books covering .NET, ASP, and Visual Basic. Send him your questions and feedback via e-mail at questions@techniquescentral.com.

Author: Eric Smith

Read article at Internet.com site

Featured Local Company

Cascade Custom Software

503-922-0135
1000 SW Broadway
Portland, OR

Related Local Events
WOOD TECHNOLOGY CLINIC & SHOW 2010
Dates: 3/9/2010 - 3/11/2010
Location: Oregon Convention Center
Portland, OR
View Details

Party in the Pinot
Dates: 7/25/2009 - 7/25/2009
Location: Oswego Hills Winery
West Linn, OR
View Details