文件的基本框架
<?xml version="1.0" encoding="utf-8"?> <!-- 如p需Y如p何o設]定w ASP.NET 應3用DI程g式!的o詳MO細O資Me訊XT,A請D造y訪X http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <appSettings></appSettings> <connectionStrings></connectionStrings> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <system.webServer></system.webServer> </configuration>
<location path="/B"> <system.web> </system.web> </location>我们也可以利用location锁定某些配置在子目录里面不能重写
<location allowOverride="false"> <system.web> </system.web> </location>
<system.web> <authentication> <!--配置授權系統,決定用戶請求頁面時如何驗證客戶標識--> </authentication> <authorization> <!--哪個客戶具有訪問wen應用程序或者當前目錄的權限--> </authorization> <compilation debug="true"> <!--標示web應用程序的目錄 .netFreameWork版本、是否生成.pdb文件調試符號(通過debug特性)--> <assemblies> <!--它列出你的web應用程序的程序集這些程序集將在你的代碼里可用只要它在bin或者gac中--> </assemblies> </compilation> <customErrors> <!--當錯誤發生時應使用的特定重定向url 如404--> </customErrors> <pages> <!--定義默認頁面--> </pages> <sessionState> <!--配置應用程序保存回話狀態的各個選項--> </sessionState> <trace/> <!--配置跟蹤--> </system.web>
<appSettings> <add key="ab" value="I'm ab"/> </appSettings>
WebConfigurationManager.AppSettings["ab"].ToString();如果你傳的key是對象名字 value是對應的命空間加類名 就這可利用反射創建對象
今天就寫這麼多。未完待續。。。。