如何处理 Asp.net MVC 路由以及 asp.net webform 路由
如何处理 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论