如何判断textbox登陆框为空值
vs2005里做个登陆窗口,以textbox为用户名输入控件,代码如何写判断textbox为空值,并提示输入用户名。
------解决方案--------------------if(textbox.Text.Trim().Length<=0)
{
Response.Write("<script>alert('请输入用户名')</script>");
}
------解决方案--------------------if (textBox1.Text == "")
...
或者在js中:
if (getElementById(文本框id).value == "")