Click here to Skip to main content
15,919,028 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I need to set page themes in my asp.net webpages . I have a design as shown below

HTML
<pre lang="xml"><div class="theme" >
                <ul>
                    <li class="active"><a href="#" title="Blue" class="blue">Blue</a></li>
                    <li><a href="#" title="Green" class="green">Green</a></li>
                    <li><a href="#" title="Orange" class="orange">Orange</a></li>
                    <li><a href="#" title="Purple" class="purple">Purple</a></li>
                    <li><a href="#" title="Gray" class="gray">Gray</a></li>
                </ul>
            </div>


How do i set the themes dynamically. I created css pages for every theme but unable to integrate .Can anyone help me sorting out this
Posted
Comments
[no name] 16-Nov-12 7:57am    
try ajax update panel....

1 solution

Hi
Please try to set the page theme in Page_PreInit event. In Page_PreInit event you can set the theme as
Page.Theme = "Gray"



Regards
Dominic
 
Share this answer
 
Comments
Dominic Abraham 18-Nov-12 1:32am    
If the solution is helpful, please mark it as answer.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900