我正在使用 ASP.Net MVC2 应用程序。因为我使用了 URL 路由
获取 URL 为
https://localhost/StudentDetail/SortField
我在 Global.asax 中编写了以下代码
routes.MapRoute(
"StudentDetail", // Route name
"StudentDetail/{SortField}", // URL with parameters
new { controller = "UDashboard", action = "UAboutMeStudentDetails",
SortField = "Major" }
);
在我看来,链接如下
<a href="/StudentDetail?SortField='Major'" >Students</a>
但它不起作用。我的网址是
https://localhost/StudentDetail?SortField='Major'
谁能帮我获得所需的网址..?
我想要网址为
https://localhost/StudentDetail/SortField
提前致谢,普拉尚特