gpt4 book ai didi

asp.net - Web.config:在xml属性中添加注释

转载 作者:行者123 更新时间:2023-12-03 14:10:37 25 4
gpt4 key购买 nike

我想在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"
/>

关于asp.net - Web.config:在xml属性中添加注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2842850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com