如何处理 Asp.net MVC 路由以及 asp.net webform 路由

发布于 2024-09-17 09:41:37 字数 846 浏览 4 评论 0原文

如何处理 asp.net mvc 路由以及 asp.net webform 路由。 我已将我的 mvc 应用程序合并到现有的 Web 应用程序中。

在我的网络应用程序中,我实现了路由,如下所示:

routes.Add("View Product Details",
  new Route("Product/{City}/{Manufacturer}/{Name}/{ProductID}/{*ProductType}"));

同样,我在 mvc 中实现了路由,如下所示

routes.MapRoute("Product Details",
         "Product/{City}/{Manufacturer}/{Name}/{ProductID}/{ProductType}",
         new
         {
             controller = "Home",
             action = "ProductDetails",
             City= UrlParameter.Optional,
             Manufacturer= UrlParameter.Optional,
             Name= UrlParameter.Optional,
             ProductID= UrlParameter.Optional,
             ProductType= UrlParameter.Optional
         });

请帮助我,因为两个页面都有不同的功能和设计。

如何处理这两个页面,因为一个是自定义 Web 表单,另一个是 ASP.NET MVC 视图?

How to handle asp.net mvc routing along with asp.net webform routing.
I have merged my mvc app into my existing web application.

In my web application i have implement routing as below:

routes.Add("View Product Details",
  new Route("Product/{City}/{Manufacturer}/{Name}/{ProductID}/{*ProductType}"));

Similarly i have implemented routing in mvc as below

routes.MapRoute("Product Details",
         "Product/{City}/{Manufacturer}/{Name}/{ProductID}/{ProductType}",
         new
         {
             controller = "Home",
             action = "ProductDetails",
             City= UrlParameter.Optional,
             Manufacturer= UrlParameter.Optional,
             Name= UrlParameter.Optional,
             ProductID= UrlParameter.Optional,
             ProductType= UrlParameter.Optional
         });

Please help me on this, as both page have different functionality and design.

How to handle both pages, as one is custom web form while other is asp.net mvc view?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文