如何使用 C# 解码 URL 参数?
如何使用 C# 解码编码的 URL 参数?
例如,采用以下 URL:
my.aspx?val=%2Fxyz2F
How can I decode an encoded URL parameter using C#?
For example, take this URL:
my.aspx?val=%2Fxyz2F
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
或
Url 未通过一次调用完全解码。要完全解码,您可以循环调用以下方法之一:
or
Url is not fully decoded with one call. To fully decode you can call one of this methods in a loop:
您是否尝试过
HttpServerUtility.UrlDecode
或HttpUtility.UrlDecode
?Have you tried
HttpServerUtility.UrlDecode
orHttpUtility.UrlDecode
?尝试:
Try:
试试这个:
Try this: