我试图让一个文本框验证条目是否是 1 到 100 之间的数字。
例子:
if (textBox.Text is equal to numbers between 1 and 100)
{
do this;
}
else
{
do this;
}
这是用于 jpeg 压缩的跟踪栏的表单验证,并且只能具有 1 到 100 之间的数值。我该怎么做?
我试图让一个文本框验证条目是否是 1 到 100 之间的数字。
例子:
if (textBox.Text is equal to numbers between 1 and 100)
{
do this;
}
else
{
do this;
}
这是用于 jpeg 压缩的跟踪栏的表单验证,并且只能具有 1 到 100 之间的数值。我该怎么做?
String text = TextBox.Text;
try{
long value = long.parse(text.trim());
if(value > 0 && value < 101){
//do something here
}
else{
//Do something else
}
}
catch(Exception e){
Messagebox.Show("Please check you input and try again");
}
首先,您需要将文本框的输入从字符串转换为整数
string textBoxvalue = textBox.Text;
int textBoxIntValue = int.TryParse(textBoxvalue)
那么你需要检查你需要的条件值
if(textBoxIntValue > 0 && textBoxIntValue <= 100)
{
//do THIS
}