-1

我试图让一个文本框验证条目是否是 1 到 100 之间的数字。

例子:

if (textBox.Text is equal to numbers between 1 and 100)
{
    do this; 
} 
else 
{ 
    do this; 
}

这是用于 jpeg 压缩的跟踪栏的表单验证,并且只能具有 1 到 100 之间的数值。我该怎么做?

在此处输入图像描述

4

2 回答 2

1
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");
}
于 2013-08-24T01:42:56.277 回答
0

首先,您需要将文本框的输入从字符串转换为整数

string textBoxvalue = textBox.Text;
int textBoxIntValue = int.TryParse(textBoxvalue)

那么你需要检查你需要的条件值

if(textBoxIntValue > 0 && textBoxIntValue <= 100)
{
//do THIS
}
于 2013-08-24T01:40:12.190 回答