Modifier

PageParserFilter.NumberOfControlsAllowed Property

Definition

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.

Applies to