Controller.Redirect Method (System.Web.Mvc)

Switch View :
ScriptFree
.NET Framework Class Library
Controller.Redirect Method

Creates a RedirectResult object that redirects to the specified URL.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)
Syntax

Visual Basic
Protected Friend Overridable Function Redirect ( _
	url As String _
) As RedirectResult
C#
protected internal virtual RedirectResult Redirect(
	string url
)
Visual C++
protected public:
virtual RedirectResult^ Redirect(
	String^ url
)

Parameters

url
Type: System.String
The URL to redirect to.

Return Value

Type: System.Web.Mvc.RedirectResult
The redirect result object.
Remarks

The result object that is prepared by this method is written to the response by the MVC framework when the object is executed.

See Also

Reference