C#中if循环 判断文本框中填写是否为空(这里不考虑其他的值判断里边是否是空的) 10
用户名:userName
密码:userPwd
Email:userEmail
以这样的格式写
if()
{
if()
{
if()
{
}
else
}
else
}
else 展开
为什么非要这样写呢?像下面这样写多好!
1、假设界面注册界面如下所示。按钮名称为btnSubmit,三个文本框名称分别为txtUserName,txtPwd和txtEmail。
2、双击按钮,添加按钮单击事件处理代码(如下):
//确定按钮单击事件处理方法
private void btnSubmit_Click(object sender, EventArgs e)
{
//如果用户名为空
if (this.txtUserName.Text == "")
{
//弹出提示信息"用户名不能为空!"
MessageBox.Show("用户名不能为空!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.txtUserName.Focus();//使用户名文本框获得焦点
return;//跳出方法
}
//如果密码为空
if (this.txtPwd.Text == "")
{
//弹出提示信息"密码不能为空!"
MessageBox.Show("密码不能为空!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.txtPwd.Focus();//使密码文本框获得焦点
return;//跳出方法
}
//如果Email为空
if (this.txtEmail.Text == "")
{
//弹出提示信息"Email不能为空!"
MessageBox.Show("Email不能为空!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.txtEmail.Focus();//使Email文本框获得焦点
return;//跳出方法
}
//在此添加用户名,密码和Email都验证通过的代码
}
3、这样写的好处是除了可以验证用户有没有填写用户名、密码和Email外,还可以弹出对话框提示用户,并且可以将光标定位到对应的文本框(即使对应的文本框获得焦点)。
if(String.IsNullOrEmpty(userName.text.ToString()) == true)
{
...
if(userPwd
.text.ToString()) == true)
{
...
}
}
不过这样写有一点不好,你可能希望如果用户在某个输入框中没有录入内容就在录入框的右边给出提示,全部用if else判断就无法达到当用户多个输入框没有录入都给出提示的效果
所以也可以分开判断
{
if(userPwd!=“&&userEmail!=“”)
{
if(userEmail!=“”)
{
Messabox.Show("注册成功"):
}
else
{
Messabox.Show("Email地址不能为空"):
}
}
else
{
Messabox.Show("密码或Email地址不能为空"):
}
}
else
{
Messabox.Show("账号,密码或Email地址不能为空"):
}
楼主,这个题目好像不用这么复杂的
string userPwd = null;
string userEmail = null;
onclick触发后的代码如下:
{
userName = txtuserName.Text;
userPwd = txtuserPwd.Text;
userEmail = txtuserEmail.Text;
if(userName != null)
{
if(userPwd != null)
{
if(userEmail == null)
{
.....("Email不能为空!");
}
else
......("密码不能为空!");
}
else
......("密码不能为空!");
}
else
......("用户名不能为空!");
}
2010-06-23
而判断空串, 最有效的办法是
xxxx.Length == 0
而不是
xxxx == ""