/Demo/Web.config
ASP.NET | 46 lines | 15 code | 0 blank | 31 comment | 0 complexity | a9b211b04dad5e146b75528b8d86479a MD5 | raw file
1<?xml version="1.0"?> 2<!-- 3 Note: As an alternative to hand editing this file you can use the 4 web admin tool to configure settings for your application. Use 5 the Website->Asp.Net Configuration option in Visual Studio. 6 A full list of settings and comments can be found in 7 machine.config.comments usually located in 8 \Windows\Microsoft.Net\Framework\v2.x\Config 9--> 10<configuration> 11 <appSettings/> 12 <connectionStrings/> 13 <system.web> 14 <pages theme="Default"></pages> 15 <!-- 16 Set compilation debug="true" to insert debugging 17 symbols into the compiled page. Because this 18 affects performance, set this value to true only 19 during development. 20 --> 21 <compilation debug="true"> 22 </compilation> 23 <!-- 24 The <authentication> section enables configuration 25 of the security authentication mode used by 26 ASP.NET to identify an incoming user. 27 --> 28 <authentication mode="Windows"/> 29 <!-- 30 The <customErrors> section enables configuration 31 of what to do if/when an unhandled error occurs 32 during the execution of a request. Specifically, 33 it enables developers to configure html error pages 34 to be displayed in place of a error stack trace. 35 36 <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> 37 <error statusCode="403" redirect="NoAccess.htm" /> 38 <error statusCode="404" redirect="FileNotFound.htm" /> 39 </customErrors> 40 --> 41 <httpHandlers> 42 <add path="IZWebFileManagerThumbnailHandler.ashx" verb="GET" type="IZ.WebFileManager.ThumbnailHandler, IZ.WebFileManager"/> 43 </httpHandlers> 44 <globalization requestEncoding="utf-8" responseEncoding="utf-8" uiCulture="en-US" culture="en-US"/> 45 </system.web> 46</configuration>