if 语句检查用户是否将文本框留空 - 问题
if statement to check if the user has left the text box empty - issue
我有一个带有文本框的 Web 表单,用户可以在其中输入 URL,所以默认情况下我会输入一个 https:// 但如果用户在和之后没有输入 URL留空我想显示一个错误。我用过
if (textBox1.TextLength <= 9)
{
// code
}
不使用 Length
检查,而是使用等于运算符和 .Text
属性 来检查文本框中的确切文本。
//This means, there is only "https://" is written in the text box
if(textBox1.Text == "https://")
{
//Show an error. Here user did not enter anything
}
else
{
//Your implementation
}
我有一个带有文本框的 Web 表单,用户可以在其中输入 URL,所以默认情况下我会输入一个 https:// 但如果用户在和之后没有输入 URL留空我想显示一个错误。我用过
if (textBox1.TextLength <= 9)
{
// code
}
不使用 Length
检查,而是使用等于运算符和 .Text
属性 来检查文本框中的确切文本。
//This means, there is only "https://" is written in the text box
if(textBox1.Text == "https://")
{
//Show an error. Here user did not enter anything
}
else
{
//Your implementation
}