ASP.NET Tutorial/Configuration/styleSheetTheme — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:57, 26 мая 2010

Register a Theme for all pages in your application in the web configuration file.

File: Web.Config
<configuration>
<system.web>
  <pages theme="Site" />
</system.web>
</configuration>


Use the styleSheetTheme attribute to apply a Theme to the pages in an application

If you use the styleSheetTheme attribute, you can override particular Skin properties in a page.
File: Web.Config
<configuration>
<system.web>
  <pages styleSheetTheme="Site" />
</system.web>
</configuration>