且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Machine.config和web.config文件之间的区别

更新时间:2023-09-26 10:53:34

检查这个



http://forums.asp.net/p/1117776/1736929.aspx [ ^ ]



http://www.daniweb.com/software-development/ csharp / threads / 32555 [ ^ ]



http://www.allinterview.com /showanswers/56550.html [ ^ ]



http://www.geekinterview.com/question_details/21032 [ ^ ]



http: //forums.techarena.in/software-development/1295830.htm [ ^ ]
Check this

http://forums.asp.net/p/1117776/1736929.aspx[^]

http://www.daniweb.com/software-development/csharp/threads/32555[^]

http://www.allinterview.com/showanswers/56550.html[^]

http://www.geekinterview.com/question_details/21032[^]

http://forums.techarena.in/software-development/1295830.htm[^]


检查这些:





http://www.allinterview.com/showanswers/56550.html [ ^ ]



http://www.knowfreely.com/index.php?option=com_content&view= article& id = 174:machineconfig-and-webconfig-files& catid = 15之间的区别:aspnet-faq& Itemid = 33 [ ^ ]



http://www.techfuels.com/programming/29687-difference-between-web-config-machine-config-file.html [ ^ ]
Check These:


http://www.allinterview.com/showanswers/56550.html[^]

http://www.knowfreely.com/index.php?option=com_content&view=article&id=174:difference-between-machineconfig-and-webconfig-files&catid=15:aspnet-faq&Itemid=33[^]

http://www.techfuels.com/programming/29687-difference-between-web-config-machine-config-file.html[^]


web.config:它是ASP.NET Web应用程序的主要设置和配置文件。该文件是 XML 文档,用于定义有关Web应用程序的配置信息。 web.config文件包含控制模块加载,安全配置会话状态配置以及应用程序语言和编译设置的信息。 Web.config文件还可以包含特定于应用程序的项目,例如数据库连接字符串。



机器。 config:它包含适用于整个计算机的设置。此文件位于%运行时安装路径%\Config 目录中。 Machine.config包含机器范围装配绑定,内置远程处理通道和ASP.NET的配置设置。



希望它有所帮助:)
web.config: It is the main settings and configuration file for an ASP.NET web application. The file is an XML document that defines configuration information regarding the web application. The web.config file contains information that control module loading, security configuration, session state configuration, and application language and compilation settings. Web.config files can also contain application specific items such as database connection strings.

machine.config: It contains settings that apply to an entire computer. This file is located in the %runtime install path%\Config directory. Machine.config contains configuration settings for machine-wide assembly binding, built-in remoting channels, and ASP.NET.

hope it helps :)