RangeExpression::MaxType Property
Gets or sets the maximum value of the range.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
Possible values for this property are Inclusive, Exclusive, and None.
When the MaxType is set to Inclusive, the maximum value of the range is included in the search results. This is equivalent to performing a >= operation. If you set the property to Exclusive field, it is equivalent to specifying a > or < operation. If you set the property to None, no limit is imposed on the range.
The following example shows how to include the minimum value that is specified in the range and how to exclude the maximum value. The maximum and minimum values are entered into text boxes. This code example is part of a larger example provided in Walkthrough: Filtering Data in a Web Page Using Declarative Syntax.
<asp:RangeExpression DataField="ListPrice"
MinType="Inclusive" MaxType="Exclusive">
<asp:ControlParameter ControlID="FromTextBox" />
<asp:ControlParameter ControlID="ToTextBox" />
</asp:RangeExpression>
Available since 4.0