Hi.
How can i change this route: http://localhost:28514/News/PageNews/Index/1?pageid=1
It is not working. Here is what i write:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes();
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}/{pageid}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional, pageid =""},
namespaces: new[] { "TemplateSite.Mvc.Controllers" }
);
}
Go to the complete details ...