Ho il seguente URL che ho bisogno di supportare nel mio progetto asp.net mvc per un po '.routing collegamenti legacy asp.net in un progetto aspvc mvc
http://www.example.com/d.aspx?did=1234
Ho bisogno di mappare questo a questo URL.
http://www.example.com/Dispute/Detail/1234
Ho già visto le seguenti informazioni.
http://blog.eworldui.net/post/2008/04/ASPNET-MVC---Legacy-Url-Routing.aspx
ASP.Net MVC routing legacy URLs passing querystring Ids to controller actions
Nel tentativo di seguire questa posso ottenere il primo URL a lavorare, ma poi di sono rotti tutti gli altri url. Qualcuno può vedere il mio dove ho sbagliato?
Ecco i miei percorsi.
public static void RegisterRoutes(RouteCollection routes)
{
// all my other routes
// Legacy routes
routes.Add(
"Legacy",
new LegacyRoute(
"d.aspx",
"LegacyDirectDispute",
new LegacyRouteHandler())
);
routes.MapRoute(
"LegacyDirectDispute",
"Dispute/Details/{id}",
new { controller = "Dispute", action = "Details", id = "" }
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
}
Ecco il codice nel mio global.asax.cs Sto usando.
public class LegacyRoute : Route
{
public string RedirectActionName { get; set; }
public LegacyRoute(string url, string redirectActionName, IRouteHandler routeHandler)
: base(url, routeHandler)
{
RedirectActionName = redirectActionName;
}
}
// The legacy route handler, used for getting the HttpHandler for the request
public class LegacyRouteHandler : IRouteHandler
{
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
return new LegacyHandler(requestContext);
}
}
// The legacy HttpHandler that handles the request
public class LegacyHandler : MvcHandler
{
private RequestContext requestContext;
public LegacyHandler(RequestContext requestContext)
: base(requestContext)
{
this.requestContext = requestContext;
}
protected override void ProcessRequest(HttpContextBase httpContext)
{
string redirectActionName = ((LegacyRoute)RequestContext.RouteData.Route).RedirectActionName;
var queryString = requestContext.HttpContext.Request.QueryString;
foreach (var key in queryString.AllKeys)
{
if (key.Equals("did"))
{
requestContext.RouteData.Values.Add("id", queryString["did"]);
}
else
{
requestContext.RouteData.Values.Add(key, queryString[key]);
}
}
VirtualPathData path = RouteTable.Routes.GetVirtualPath(requestContext, redirectActionName,
requestContext.RouteData.Values);
if (path != null)
{
httpContext.Response.Status = "301 Moved Permanently";
httpContext.Response.AppendHeader("Location", path.VirtualPath);
}
}
}
risposta qui: http://stackoverflow.com/questions/817325/asp-net-mvc-routing-legacy-urls-passing-querystring-ids-to-controller-actions/818370 # 818370 –
@ marwan-auida Si prega di leggere il contenuto della domanda. Ho già visto e letto questa domanda e ho anche un link ad esso nella mia domanda. – MHinton
Quello che intendo per il mio url è rotto è prima che aggiungo il codice LegacyRouteHandler che ho avuto link come http://www.example.com/News e ora vengono su http://www.example.com/d.aspx? action = Index & regolatore = News. – MHinton