Controller.RedirectToAction Method (String, String, RouteValueDictionary)
Redirects to the specified action using the action name, controller name, and route dictionary.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Overridable Function RedirectToAction ( _ actionName As String, _ controllerName As String, _ routeValues As RouteValueDictionary _ ) As RedirectToRouteResult 'Usage Dim actionName As String Dim controllerName As String Dim routeValues As RouteValueDictionary Dim returnValue As RedirectToRouteResult returnValue = Me.RedirectToAction(actionName, _ controllerName, routeValues)
Parameters
- actionName
- Type: System.String
The name of the action.
- controllerName
- Type: System.String
The name of the controller
- routeValues
- Type: System.Web.Routing.RouteValueDictionary
The parameters for a route.
Show: