如何在 ASP.NET MVC 中路由 Web 表单页面?

发布于 2024-10-26 05:31:33 字数 363 浏览 1 评论 0原文

我有一个 MVC 页面,其中有一个需要渲染的 Web 表单页面:

Web 表单页面的虚拟目录是:

http://mysite/Report/1

保存的文件:

~/Areas/Accounts/Views/Invoices/Report.aspx?id=1

我如何映射它?

我已将其映射到控制器:

return Redirect("~/Areas/Accounts/Views/Invoices/Report.aspx?id=1?id=" + id);

但出现错误。

I have an MVC page that has a webforms page that it needs to render:

The virtual directory for the webforms page is:

http://mysite/Report/1

File saved:

~/Areas/Accounts/Views/Invoices/Report.aspx?id=1

How do I map this?

I have mapped it to controller:

return Redirect("~/Areas/Accounts/Views/Invoices/Report.aspx?id=1?id=" + id);

But I get an error.

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

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

发布评论

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

评论(2

七堇年 2024-11-02 05:31:33

您想要使用 MapPageRoute() 方法将某些内容发送到特定页面:

routes.MapPageRoute(
 "ReportRoute",
 "Report/{id}",
 "~/Areas/Accounts/Views/Invoices/Report.aspx?id={id}"   
 );

You want to use the MapPageRoute() method to send something to a specific page:

routes.MapPageRoute(
 "ReportRoute",
 "Report/{id}",
 "~/Areas/Accounts/Views/Invoices/Report.aspx?id={id}"   
 );
菩提树下叶撕阳。 2024-11-02 05:31:33

从你的说法来看,你可能不清楚自己在做什么。

  1. 在此文件夹中添加控制器(来自 Visual Studio):~/Areas/Accounts/Controllers/Report

    您的 ReportController 类中可能有一个 display(int id) 方法。那么默认情况下你的 URl 将如下所示:

    http://mysite/Report/display/1
    
  2. 要自定义它,请将其添加到 Global.asax.cs 中:

    routes.MapRoute(
    "NewRoute", // 路由名称
    "report/{id}", // 带参数的 URL
     new {controller = "report", action = "display", // 参数默认值
     id = UrlParameter.可选}
    );
    

From the way you put it you might not be clear on what you're doing.

  1. Add a Controller (from visual studio) in this folder : ~/Areas/Accounts/Controllers/Report

    You would probably have a method display(int id) in your ReportController class. Then by default your URl will look like:

    http://mysite/Report/display/1
    
  2. To customize it you add this into Global.asax.cs :

    routes.MapRoute(
    "NewRoute", // Route name
    "report/{id}", // URL with parameters
     new { controller = "report", action = "display", // Parameter defaults
     id = UrlParameter.Optional }
    );
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文