web.config 357 B

123456789101112
  1. <?xml version="1.0"?>
  2. <!--
  3. The purpose of this file is to block access to the template files, that are not meant
  4. to be directly requested.
  5. -->
  6. <configuration>
  7. <system.web>
  8. <httpHandlers>
  9. <add path="*.aspx" verb="*" type="System.Web.HttpNotFoundHandler" validate="true"/>
  10. </httpHandlers>
  11. </system.web>
  12. </configuration>