PageParserFilter.NumberOfControlsAllowed Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the maximum number of controls that a parser filter can parse for a single page.
public:
virtual property int NumberOfControlsAllowed { int get(); };
public virtual int NumberOfControlsAllowed { get; }
member this.NumberOfControlsAllowed : int
Public Overridable ReadOnly Property NumberOfControlsAllowed As Integer
Property Value
The maximum number of controls a parser filter can parse for a page. The default value is 0, which indicates that no controls are parsed.
Remarks
The ASP.NET page parser keeps track of the controls it parses, and if the number exceeds the limit set by a PageParserFilter instance, it throws an HttpException exception.