Url.Action正在编码参数值

发布于 2024-10-16 02:05:19 字数 313 浏览 2 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

醉梦枕江山 2024-10-23 02:05:19

首先,如果可能的话,您应该避免使用 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.

心欲静而疯不止 2024-10-23 02:05:19

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.

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