Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 IIS/ASP.NET 管道的哪个位置检查传入的 url 是否以空格和斜杠结尾(有问题的条目看起来像这样:'/xxxx/yyyy/zzzz.aspx /1')?这导致我们的生产服务器出现错误。如果我在本地运行它,Chrome 会给我太多重定向警告。有没有办法可以捕获这个或删除'/'?
找到一个可以接受的答案。检查格式错误的 url - !(Uri.IsWellFormedUriString(url, UriKind.RelativeOrAbsolute)) - 在 Application_Error 事件中为我提供了我需要的控制