Url.Action正在编码参数值
在 ASP.NET MVC 中,如果我使用:
<% Response.Write(Url.Action("索引", “用户管理”,新 RouteValueDictionary(新{页面= “{0}”}))); %>
我得到:
/usermanagement?page=%7B0%7D
但我想得到:
/usermanagement?page={0}
为什么它编码我的参数值,我应该怎么做才能写入未编码的参数值?
谢谢
In ASP.NET MVC, if I use:
<% Response.Write(Url.Action("Index",
"usermanagement", new
RouteValueDictionary(new { page =
"{0}" }))); %>
I get:
/usermanagement?page=%7B0%7D
But I wanted to get:
/usermanagement?page={0}
Why is it encondig my parameter value, and what should I do to write the parameter value unencoded?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,如果可能的话,您应该避免使用 QueryString 参数。将它们转化为路由参数。接下来,应该转义大括号,这就是 Url.Action() 帮助器为您做的事情。
First, you should avoid QueryString params if possible. Turn them into route parameters. Next, curly braces should be escaped and that's what the Url.Action() helper is doing for you.
Url.Action
辅助方法用于生成 url。 URL 需要进行 URL 编码才能成为有效的 URL。所以你所观察到的是完全正常的行为。帮助器通过对所有参数进行编码来生成有效的 url。The
Url.Action
helper method is used to generate urls. Urls need to be URL encoded for them to be valid urls. So what you are observing is perfectly normal behavior. The helper generates a valid url by encoding all parameters.