When constructing an input an ASP.NET MVC 3 view which uses jQuery.validate
<input
type="text"
class="text-box single-line"
id="ReserveQuantity"
name="ReserveQuantity"
data-val="true"
data-val-required="The Reserve Quantity field is required."
data-val-number="This value must be numeric"
>
this is markup that would be used for for a ReserveQuantity input. In addition to these parameters, what data- annotation should I use in order to make sure only a certain numeric range is acceptable here without manual validation?