MVC 中,为我自己的 IHttpHandler 派生类指定路由
我的 MVC 4 Web 程序中,定义了一个 LicenceCenterHandler : IHttpHandler 和一个 LCRouteHandler : IRouteHandler,然后加入一个路由:routes.Add( "ac", new Route( "ac/licencecenter", new LCRouteHandler() ) );
结果,我所有视图页面中,凡是以 @Url.Action() 和 @Html.ActionLink() 生成的链接,则都带上了 "http://localhost:13230/ac/licencecenter" 这个路径,而两个函数中的参数,则都变成了 ?action=&controller= 这等字样。
这是为啥呢?