<ajaxToolkit:NumericUpDownExtender ID="NumericUpDownExtender1"
runat="server"
TargetControlID="Qty"
Width="80"
TargetButtonDownID="ImageButton1"
TargetButtonUpID="ImageButton2"
RefValues=""
ServiceDownMethod=""
ServiceUpMethod=""
Minimum = "50"
Step = "25"/>
this generates an error in IE but work fine in Firefox
IE error: "The number of fractional digits is out of range"
i would like to restrict user from selecting less than 50 and go up by 25 count
logically this should work find and it does on Firefox, why IE has a problem with it go figure!
if i set the textbox text to 50 and Minimum = "0" user can still can change the value to less than 50 and go up by 25 just find on both IE and Firefox.
runat="server"
TargetControlID="Qty"
Width="80"
TargetButtonDownID="ImageButton1"
TargetButtonUpID="ImageButton2"
RefValues=""
ServiceDownMethod=""
ServiceUpMethod=""
Minimum = "50"
Step = "25"/>
this generates an error in IE but work fine in Firefox
IE error: "The number of fractional digits is out of range"
i would like to restrict user from selecting less than 50 and go up by 25 count
logically this should work find and it does on Firefox, why IE has a problem with it go figure!
if i set the textbox text to 50 and Minimum = "0" user can still can change the value to less than 50 and go up by 25 just find on both IE and Firefox.