温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:ASP.NET三层架构留言本项目源码
当前文件:
MVCGuestBook/WEB/Web.config,打开代码结构图
MVCGuestBook/WEB/Web.config,打开代码结构图1<?xml version="1.0" encoding="utf-8"?><configuration> 2
3
4
5
<appSettings> 6
7
<add key="FCKeditor:BasePath" value="~/fckeditor/"/> 8
<add key="FCKeditor:UserFilesPath" value="~/upload/"/> <!--鍦?.6涓厤缃枃浠堕厤缃矾寰?-> 9
10
</appSettings> 11
12
<connectionStrings> 13
<add name="myData" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\WebData.aspx;" providerName="oledb"/> 14
<add name="mySql" connectionString="server=.;uid=sa;pwd=sa;database=GustBook" providerName="sql"/> 15
</connectionStrings> 16
17
<system.web> 18
<!-- 19
璁剧疆 compilation debug="true" 鍙皢璋冭瘯绗﹀彿鎻掑叆 20
宸茬紪璇戠殑椤甸潰涓備絾鐢变簬杩欎細 21
褰卞搷鎬ц兘锛屽洜姝ゅ彧鍦ㄥ紑鍙戣繃绋嬩腑灏嗘鍊? 22
璁剧疆涓?true銆? 23
--> 24
<compilation debug="false"> 25
26
27
<assemblies> 28
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 29
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies></compilation> 30
<!-- 31
閫氳繃 <authentication> 鑺傚彲浠ラ厤缃?ASP.NET 鐢ㄦ潵 32
璇嗗埆杩涘叆鐢ㄦ埛鐨? 33
瀹夊叏韬唤楠岃瘉妯″紡銆? 34
--> 35
<authentication mode="Windows"/> 36
<!-- 37
濡傛灉鍦ㄦ墽琛岃姹傜殑杩囩▼涓嚭鐜版湭澶勭悊鐨勯敊璇紝 38
鍒欓氳繃 <customErrors> 鑺傚彲浠ラ厤缃浉搴旂殑澶勭悊姝ラ銆傚叿浣撹鏉ワ紝 39
寮鍙戜汉鍛橀氳繃璇ヨ妭鍙互閰嶇疆 40
瑕佹樉绀虹殑 html 閿欒椤? 41
浠ヤ唬鏇块敊璇爢鏍堣窡韪? 42
43
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> 44
<error statusCode="403" redirect="NoAccess.htm" /> 45
<error statusCode="404" redirect="FileNotFound.htm" /> 46
</customErrors> 47
--> 48
49
</system.web> 50
51
</configuration>


