Web.config:在xml属性中放置注释

时间:2010-05-16 07:06:27

标签: asp.net web-config xml-comments

我想在web.config文件中添加评论,如下所示:

<httpRuntime 
  requestValidationMode="2.0"      // require for [ValidateInput(false)] in .net-4.0
  requestPathInvalidCharacters=""  // include & character in the url
  enableVersionHeader="false"      // disable X-AspNet-Version header
  />

有没有办法以这种方式发表评论,使用<% %>等服务器端评论?

2 个答案:

答案 0 :(得分:30)

web.config文件是XML文件,因此您唯一的选择是使用XML注释:

<!--
   requestValidationMode="2.0" - require for [ValidateInput(false)] in .net-4.0
   requestPathInvalidCharacters=""  - include & character in the url
   enableVersionHeader="false" - disable X-AspNet-Version header
-->
<httpRuntime 
  requestValidationMode="2.0"      
  requestPathInvalidCharacters=""  
  enableVersionHeader="false"      
/>

答案 1 :(得分:-14)

你可以评论web.config的任何部分,看看如何做到这一点!

反正

<httpRuntime 
  requestValidationMode="2.0"      <!-- require for [ValidateInput(false)] in .net-4.0-->
  requestPathInvalidCharacters=""  <!--include & character in the url-->
  enableVersionHeader="false"      <!-- disable X-AspNet-Version header-->
  />