[ASP.NET] +號的網址 被IIS拒絕了

如標題

前提故事提要  串檔案的時候(http://alonsotest.com?a=++你好.html)會用到URL編碼如下 

https://dotblogs.com.tw/mepowerlmay/2020/05/22/153517

OK編好了放到IIS 7以上還是GG.....WHY......

原因是IIS7 對於+號的URL設定拒絕了....要在config 打開徹設定

https://serverfault.com/questions/76013/iis6-vs-iis7-and-iis7-5-handling-urls-with-plus-sign-in-base-not-querystr

 

<system.webServer>
    <security>
      <requestFiltering allowDoubleEscaping="true"/>
    </security>
  
  </system.webServer>

 

以上文章僅用紀錄資料使用.....