Controller.RedirectPermanent Method
Returns an instance of the RedirectResult class with the Permanent property set to true.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Overridable Function RedirectPermanent ( _ url As String _ ) As RedirectResult 'Usage Dim url As String Dim returnValue As RedirectResult returnValue = Me.RedirectPermanent(url)
Parameters
- url
- Type: System.String
The URL to redirect to.
Return Value
Type: System.Web.Mvc.RedirectResultAn instance of the RedirectResult class with the Permanent property set to true.
Show: