- SiteAdmin CMS - Ultimate modular Content Management System for ASP.NET
- NetPass - Membership and Role Provider
|
HttpHandlers in SiteAdmin CMS
There is number of optional binary resources (images, components) are served from WDK.VFS that need to have additional activation via web.config section called HttpHandlers. To activate these resources handling you need to add following lines into your web.config file:
<httpHandlers>
<add path="*.css" verb="GET,HEAD,POST" type="System.Web.StaticFileHandler" validate="true" />
<add path="*.gif" verb="GET,HEAD,POST" type="System.Web.StaticFileHandler" validate="true" />
<add path="*.png" verb="GET,HEAD,POST" type="System.Web.StaticFileHandler" validate="true" />
</httpHandlers>
|