[ASPNET] Fix A potentially dangerous Request.Path value was detected from the client
Hướng dẫn khác phục lỗi A potentially dangerous Request.Path value was detected from the client (&) trên website asp.net
Các bạn vào file web.config tìm đến dòng httpRuntime và thêm thuộc tính requestPathInvalidCharacters="" vào nhé
Vd như mẫy sau:
<system.web>
<httpRuntime targetFramework="4.5.2" requestPathInvalidCharacters="" />
<pages validateRequest="false" >
<namespaces>
....
</namespaces>
</pages>
</system.web>
<httpRuntime targetFramework="4.5.2" requestPathInvalidCharacters="" />
<pages validateRequest="false" >
<namespaces>
....
</namespaces>
</pages>
</system.web>
Tùy vào code của bạn .net version bao nhiêu thì targetFramework Sẽ khác nhau nhé
Chúc các bạn thành công.
Bình luận
Gửi