在我的 mvc2 项目中,一些 URL 显示在浏览器中,如下所示,
本地主机:53289/Paper/ViewAgendaPaper?MeetingId=186&type=2&RefId=186
但我更喜欢看起来像这样
本地主机:53289/Paper/ViewAgendaPaper
在我的 Global.asax 中,
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Default", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
如何隐藏 URL 中的 id 字段。请给我一些想法。谢谢你。