themes and skin
How to create themes like orkut in asp.net using c#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dipa AhujaPosted May 27, 2010, 1:48 AM
CrishPosted May 26, 2010, 9:45 AM
you need to make multiple theme files. Once create then give user to option for selection of this skin file.
Programmatic Access to Themes
protected void Page_PreInit(object sender, System.EventArgs e){
Page.Theme = Request.QueryString["Theme1"];
}
=============================
for more details about asp.net theme and stylesheet go through below link
http://msdn.microsoft.com/en-us/library/ykzx33wh.aspx
Don't forget to Mark Do you like this Answer that solved your problem!