Preferred Language:

Listing 28.19 - Web.config

Listing 28.19 - Web.config (C#)
Copy

<configuration>
  <configSections>
    <sectionGroup name="system.web">
      <section 
          name="design" 
          type="AspNetUnleashed.DesignSection" 
          allowLocation="true" 
          allowDefinition="Everywhere"/>
    </sectionGroup>
  </configSections>
  <system.web>
    <design 
      backcolor="red" 
      styleSheetUrl="~/styles/style.css"/>
  </system.web>
</configuration>