本文介绍了web配置清晰的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么用的<清/> 在web.config文件

我这下是connectionStrings:

 <&是connectionStrings GT;
        <清/>
  < /&是connectionStrings GT;


解决方案

这将清除所有继承键,仅此而已。

下面是MSDN文章:

What is the use of the <clear/> in the web.config file?

I have it under connectionStrings:

<connectionStrings>
        <clear />
  </connectionStrings>
解决方案

It clears all inherited keys, that's it.

Here is the MSDN Article:http://msdn.microsoft.com/en-us/library/aa903345(v=vs.71).aspx

这篇关于web配置清晰的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 14:21