将处理 MVC 3 的 URL 中的 URL 的路由
我正在尝试创建一个自定义路由,可以处理以下内容:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将链接作为 id 传递。
像...
控制器:
查看:
或修改global.asax的routes.MapRoute并添加另一个参数。
Pass the link as id.
Something like...
controller:
View:
or modify the global.asax's routes.MapRoute and add another parameter.