![]() |
Web Development »
HTML / CSS »
General
Beginner
License: The Code Project Open License (CPOL)
How to change page theme in asp.net 2.0 dynamically at runtimeBy Rajesh Naik Ponda GoaASP.Net has introduced one neat feature called themes by virtue of which we can assign different themes to page at design time. Unfortunately there is not built in support to change page themes at runtime. Here is a simple code which can be used to change page themes at runtime. |
HTML, C# 2.0, .NET CF, .NET 2.0, Win2K, WinXP, Win2003, Vista, .NET 3.0, ASP.NET, Visual Studio, Dev
|
||||||||||
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
This is a simple code which can be used to change page themes at runtime.
Basic knowledge of stylesheets is required.
Live Demo
Before we proceed further I would recommend you to see live demo here to get idea what we are talking about.
Challenges
At first though we may say we can easily achieve this by coding it in Page_Preinit Event as shown below.
protected void Page_PreInit(object sender, EventArgs e) { Page.Theme = "Black" }
But problem with this is we cant assign value from dropdown box because Page_Preinit event is fired much before dropdown has changed value.
Solution
protected void Page_PreInit(object sender, EventArgs e) { string thm; thm = (string)Session["themeSelected"]; if (thm != null) { Page.Theme = thm; DropDownList1.Text = thm; } else { Session["themeSelected"] = DropDownList1.Text; Page.Theme = "Blue"; } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { Session["themeSelected"] = DropDownList1.Text; Server.Transfer(Request.FilePath); }
Summary
Problem was solved by using session variable and refreshing page at page load event by server.transfer method
Download
Fully functional source code with example can be downloaded from here
Points of Interest
| You must Sign In to use this message board. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 24 Jun 2008 Editor: |
Copyright 2007 by Rajesh Naik Ponda Goa Everything else Copyright © CodeProject, 1999-2009 Web10 | Advertise on the Code Project |