Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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)
Syntax
'Declaration
Protected Friend Overridable Function RedirectToAction ( _
actionName As String, _
controllerName As String, _
routeValues As RouteValueDictionary _
) As RedirectToRouteResult
protected internal virtual RedirectToRouteResult RedirectToAction(
string actionName,
string controllerName,
RouteValueDictionary routeValues
)
protected public:
virtual RedirectToRouteResult^ RedirectToAction(
String^ actionName,
String^ controllerName,
RouteValueDictionary^ 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.
Return Value
Type: System.Web.Mvc.RedirectToRouteResult
The redirect result object.