I have my custom route like this
routes.MapRoute(
name: "child",
url: "{parcontroller}/{controller}/{action}/{id}",
defaults: new { id = UrlParameter.Optional },
constraints: new { }
);
When i'am in page
http://localhost:1234/Product/Beverage/Browse/10
Is it possible to send "Product" as parcontroller's route value everytime i submit with BeginForm (Not BeginRouteForm) or click on actionlink in this page.
Did you check attribute routing?
Defining routes got easier with MVC 5.
your route will now look like this:
check more here: http://attributerouting.net/