I want to put an comment in web.config
file, something like this:
<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
/>
Is there any way to put comments in this way, using server-side comments like <% %>
or something?
The web.config
file is an XML file, so your only option is to use XML comments:
<!--
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"
/>