Webconfig and Themes!!!

  • Thread starter Thread starter chessitguy
  • Start date Start date
C

chessitguy

I have this webconfig file that works perfectly, when I build the site
locally:
<connectionStrings/>
<system.web>
<pages theme="TemplateMonster"
masterPageFile="/Intranet/Template.master" />
</system.web>
</configuration>

,but when I copy my site to the remote server I get:

Parser Error Message: Theme 'TemplateMonster' cannot be found in the
application or global theme directories.

My 'Default.css' is located in my /App_Themes/TemplateMonster/ folder.
 
Thanks,

What I did was remove the "theme" attribute"
<system.web>
<pages masterPageFile="~/Intranet/Template.master" />
</system.web>

and I now get

The file web.sitemap required by XmlSiteMapProvider does not exist!!!
 
Back
Top