Web.Config 的图形配置及配置项含意
在IIS管理器中,在相应的网站上点击右键,选择属性打开属性对话框,在该对话框中选择[ASP.NET]选项卡,如下图:
再点[击编辑配置(E)...]按钮,打开配置界面:
修改连接字符串,确定后,在web.config中会出现:
<!--
注意: 除了手动编辑此文件以外,您还可以使用
Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
“网站”->“Asp.Net 配置”选项。
设置和注释的完整列表在
machine.config.comments 中,该文件通常位于
\Windows\Microsoft.Net\Framework\v2.x\Config 中
-->
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings/>
<connectionStrings>
<remove name="LocalSqlServer" />
<add name="LocalSqlServer" connectionString="data source=SZ-XJS-WANGY;Integrated Security=SSPI;database=bank"
providerName="System.Data.SqlClient" />
</connectionStrings>
因些得到提示,要了解这些配置项,可以参考:
\Windows\Microsoft.Net\Framework\v2.x\Config 目录下的:
machine.config.comments 和web.config.comments两个文件.
文件中还有提示:
For a full documentation of the schema please refer to
http://go.microsoft.com/fwlink/?LinkId=42127