How to apply Theme at Application level?

 Posted by vishalneeraj-24503 on 12/11/2013 | Category: ASP.NET Interview questions | Views: 2161 | Points: 40
Answer:

In the Pages section inside web.config file,we give Theme name,which will be applied in all the pages in an application.

For Example:-

To apply a theme,in web.config file write:-

<configuration>

<system.web>
<pages theme = "your_theme_name" />
</system.web>
</configuration>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response