My Current Route
routes.MapRoute(
name: "Start",
url: "Home",
defaults: new {controller = "Home", action = "GetStarted", id = UrlParameter.Optional}
);
This route redirect to the URL /Home/
ActionResult
[ActionName("GetStarted")]
public ActionResult getStart(){
}
I need to create another route based on another action result like below which is HttpPost.
[HttpPost]
[EnsureHttpAttribute]
[ActionName("GetStarted")]
public ActionResult getStart(string ddl_week, string ddl_day){
}
Url i want to redirect is /Home/Program. How can i do this?