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....