

Where do i put this. Do i put it in the web.confiq source code or someone else. And there is alot of coding on the web.confiq source; so that I dont mess with the file is there a certain place I put it it. Thanks The assignment is below
To apply a theme to the Web site, in the web.config file, assign the name of the theme by adding the theme attribute of the <pages> element, as shown in the code example that follows:
<configuration>
<system.web>
<pages theme="SkinFile1" />
</system.web>
</configuration>
2. Press F5 to run the web application. Verify if the skin file is applied to all pages that contain Label and Button controls.
3. To apply a style sheet theme to the web application, assign the name of the style sheet theme to the styleSheetTheme attribute of the <pages> element, as shown in the code example:
<configuration>
<system.web>
<pages styleSheetTheme="SkinFile1" />
</system.web>
</configuration>
4. To apply a theme or a style sheet to an individual page, set the theme or style sheet names for the Theme or StyleSheetTheme attributes in the existing
@page directive, as shown in the code example:
<%@ Page Theme="SkinFile1" %>
<%@ Page StyleSheetTheme="SkinFile1" %>