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.