如何处理asp.net中的错误请求

发布于 2024-11-02 20:03:27 字数 415 浏览 1 评论 0 原文

我使用的是asp.net 3.5,有一些带有特殊字符的请求(例如./<)由asp.net应用程序返回“错误请求”,它看起来Global.asax.cs中的Application_Error方法无法处理这些错误,是否有其他方法来处理这些请求错误?


请求示例:

http://localhost/abc./abc.aspx

http://localhost/ab

I am using asp.net 3.5, there are some requests with special characters (for example ./ and <) return "bad request" by asp.net application, it looks like the Application_Error method in Global.asax.cs cannot handle these errors, are there any other methods to handle these request errors?


Requests examples:

http://localhost/abc./abc.aspx

http://localhost/ab<c.aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落花浅忆 2024-11-09 20:03:27

造成这种情况的原因是指定的字符可能会导致安全问题。 更多信息

看一下一个潜在危险的Request.Form从客户端检测到值了解如何处理这些

This is being caused because the characters specified can cause security issues. Further information.

Take a look at A potentially dangerous Request.Form value was detected from the client for how to handle these

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文