asp.net – Web.config:在xml属性中放一个注释

前端之家收集整理的这篇文章主要介绍了asp.net – Web.config:在xml属性中放一个注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在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
  />

有没有办法以这种方式发表评论,使用服务器端的评论,如<%%>或者其他的东西?

解决方法

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"      
/>
原文链接:https://www.f2er.com/aspnet/252249.html

猜你在找的asp.Net相关文章