RangeExpression.MinType Property
.NET Framework (current version)
Gets or sets the minimum 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 MinType or MaxType property is set to Inclusive, the minimum and maximum value of the range is included in the search results. This is equivalent to performing a >= or <= operation. The Exclusive field is equivalent to the > or < operation and None imposes no limit 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>
.NET Framework
Available since 4.0
Available since 4.0
Show: