验证整数金额的最佳解决方案是什么。
我在考虑以下事项。
double value = Double.Parse(txtCubes.Text);
double wholeValue = Math.Round(value);
Console.WriteLine("You added " + wholeValue + " blocks of ice");
确保输入整数值有更好的原因吗?
答案 0 :(得分:3)
您可以使用compare validator进行int验证
<asp:CompareValidator runat="server" Operator="DataTypeCheck" Type="Integer"
ControlToValidate="youTextBoxID" ErrorMessage="Value must be a whole number" />