HttpResponse.RedirectLocation Proprietà

Definizione

Ottiene o imposta il valore dell'intestazione Location HTTP.

public:
 property System::String ^ RedirectLocation { System::String ^ get(); void set(System::String ^ value); };
public string RedirectLocation { get; set; }
member this.RedirectLocation : string with get, set
Public Property RedirectLocation As String

Valore della proprietà

String

URI assoluto trasmesso al client nell'intestazione HTTP Location.

Eccezioni

Le intestazioni HTTP sono già state scritte.

Esempio

Nell'esempio seguente viene illustrato come usare questa proprietà per specificare l'URL di reindirizzamento quando si codifica un reindirizzamento permanente usando il codice di risposta HTTP 301.

Response.StatusCode = 301;
Response.Status = "301 Moved Permanently";
Response.RedirectLocation = "http://www.newurl.com ";
Response.End();

Si applica a