Monday, April 02, 2007
Apply themes to your ASP.NET Pages
So you want to apply themes in your ASP.NET pages.......
The simplest way to do so is to write the following code in your Page_PreInit function like this:
protected void Page_PreInit(object sender, EventArgs e)
{
Page.Theme = "StyleShhetThemeName";
}
So you have done....
The simplest way to do so is to write the following code in your Page_PreInit function like this:
protected void Page_PreInit(object sender, EventArgs e)
{
Page.Theme = "StyleShhetThemeName";
}
So you have done....

