UnvalidatedRequestValues.RawUrl Propriedade
Definição
Obtém a parte da URL solicitada que segue o nome do site, sem acionar a validação de solicitação do ASP.NET.Gets the part of the requested URL that follows the website name, without triggering ASP.NET request validation.
public:
property System::String ^ RawUrl { System::String ^ get(); };
public string RawUrl { get; }
member this.RawUrl : string
Public ReadOnly Property RawUrl As String
Valor da propriedade
A parte da URL que segue o nome do site.The part of the URL that follows the website name.
Comentários
Importante
Se você usar essa propriedade, deverá verificar manualmente os dados para possíveis ataques de script entre sites.If you use this property, you must manually check the data for potential cross-site scripting attacks.
Se a URL de solicitação completa for http://www.contoso.com/default.aspx?id=44 , o valor de RawUrl será /default.aspx?id=44 .If the complete request URL is http://www.contoso.com/default.aspx?id=44, the value of RawUrl is /default.aspx?id=44.