Routing: How to hide action name in url?
Try this:
routes.MapRoute(
"item_details",
"item/{id}",
new { controller = "item", action = "Get" }
);
Try this:
routes.MapRoute(
"item_details",
"item/{id}",
new { controller = "item", action = "Get" }
);