将处理 MVC 3 的 URL 中的 URL 的路由

发布于 2024-11-19 21:37:29 字数 189 浏览 2 评论 0原文

我正在尝试创建一个自定义路由,可以处理以下内容:

domain.com/link/http://www.someotherdomain.com/blablah.html?qstring=54

传递的参数是链接...

我无法让它与 URL 编码和解码一起使用..总是返回错误的请求?

I am trying to create a custom route that can handle something like:

domain.com/link/http://www.someotherdomain.com/blablah.html?qstring=54

Where the passed param is a link...

I cannot get this to work with URL encode and decode.. always returns a bad request?

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

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

发布评论

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

评论(1

三生一梦 2024-11-26 21:37:29

将链接作为 id 传递。

像...

控制器:

public SomeAction(string url)
{
   ...
}

查看:

@Html.ActionLink("link name", "Action", new {id = "someurl.com"}

或修改global.asax的routes.MapRoute并添加另一个参数。

Pass the link as id.

Something like...

controller:

public SomeAction(string url)
{
   ...
}

View:

@Html.ActionLink("link name", "Action", new {id = "someurl.com"}

or modify the global.asax's routes.MapRoute and add another parameter.

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