PagesSection.PageParserFilterType Property
.NET Framework (current version)
Gets or sets a value that specifies the parser filter type.
Assembly: System.Web (in System.Web.dll)
<ConfigurationPropertyAttribute("pageParserFilterType", DefaultValue := "")> Public Property PageParserFilterType As String
A parser filter, which is an instance of the PageParserFilter class, is called by the page compilation process before the parsing step to allow for changes to the source code at run time.
The following code example shows how to use the PageParserFilterType property.
' Get the current PageParserFilterType property value. Console.WriteLine( _ "Current PageParserFilterType value: '{0}'", _ pagesSection.PageParserFilterType) ' Set the PageParserFilterType property to ' "MyNameSpace.AllowOnlySafeControls". pagesSection.PageParserFilterType = _ "MyNameSpace.AllowOnlySafeControls"
.NET Framework
Available since 2.0
Available since 2.0
Show: