RangeExpression::MinType Property
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>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.