请教有3个textbox,怎么判断其中哪个为空
展开全部
直接用if判断即可;
if((textbox1.Text != "") &&(textbox2.Text == "") && (textbox3.Text == ""))
{
//代码1;
}
else
if((textbox2.Text != "") &&(textbox1.Text == "") && (textbox3.Text == ""))
{
//代码2;
}
else
if((textbox3.Text != "") &&(textbox1.Text == "") && (textbox2.Text == ""))
{
//代码3;
}
if((textbox1.Text != "") &&(textbox2.Text == "") && (textbox3.Text == ""))
{
//代码1;
}
else
if((textbox2.Text != "") &&(textbox1.Text == "") && (textbox3.Text == ""))
{
//代码2;
}
else
if((textbox3.Text != "") &&(textbox1.Text == "") && (textbox2.Text == ""))
{
//代码3;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询