在 MVC 中路由 url
我有这条路径
在视图中
<img src="PhotoDisplay.ashx?photoid=12&size=medium" alt="Image with no resize"/>
我想将源网址路由到一个操作。我必须使用这个 url 格式,因为我正在重建一个网站。所以我想让所有链接在新网站中也保持活动状态。 在 global.asax 中,我添加了如下所示的路由
routes.MapRoute(
"PhotoDisplay", "PhotoDisplay.ashx?photoid={photoID}&size={size}",
new { controller = "Images", action = "PhotoDisplay", photoid= "",size="" }
);
,但在编译时出现错误。我如何映射此类 url 的路由
I have this path
In view
<img src="PhotoDisplay.ashx?photoid=12&size=medium" alt="Image with no resize"/>
I want to route the source url to an action . I must need to use this url format because i am rebuilding a site .so i want to make all the links alive in new site too.
In global.asax i added the rout like shown below
routes.MapRoute(
"PhotoDisplay", "PhotoDisplay.ashx?photoid={photoID}&size={size}",
new { controller = "Images", action = "PhotoDisplay", photoid= "",size="" }
);
But its giving error while compiling .How can i map route for that kind of url
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不应在路由中定义查询字符串参数。尝试这样:
和控制器操作:
Query string parameters should not be defined in a route. Try like this:
and the controller action: