PagesSection.ValidateRequest Property
.NET Framework (current version)
Gets or sets a value that determines whether ASP.NET examines input from the browser for dangerous values. For more information, see Script Exploits Overview.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("validateRequest", DefaultValue = true)] public bool ValidateRequest { get; set; }
Property Value
Type: System.Booleantrue if ASP.NET examines input from the browser for dangerous values; otherwise, false. The default value is true.
Request validation is performed by comparing all input data to a list of potentially dangerous values. If a match occurs, ASP.NET raises an HttpRequestValidationException.
The following code example shows how to use the ValidateRequest property.
.NET Framework
Available since 2.0
Available since 2.0
Show: