|
Themes can be used by a variety of methods. The following examples show you how you can define a theme named "SmokeAndGlass" in your application by different methods:
1. Page level <%@ Page Theme="SmokeAndGlass" Language="C#"%>
2. Application level <configuration>
<system.web>
<pages theme=“SmokeAndGlass” />
</system.web>
</configuration>
|