在 MVC 中路由 url

发布于 2024-12-11 18:45:12 字数 516 浏览 2 评论 0原文

我有这条路径

在视图中

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

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

发布评论

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

评论(1

烙印 2024-12-18 18:45:12

不应在路由中定义查询字符串参数。尝试这样:

routes.MapRoute(
    "PhotoDisplay", 
    "PhotoDisplay.ashx",
    new { controller = "Images", action = "PhotoDisplay" }
);

和控制器操作:

public ActionResult PhotoDisplay(string photoid, string size)
{
    ...
}

Query string parameters should not be defined in a route. Try like this:

routes.MapRoute(
    "PhotoDisplay", 
    "PhotoDisplay.ashx",
    new { controller = "Images", action = "PhotoDisplay" }
);

and the controller action:

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