[求助]如何验证用户名
即席在asp.net中,我要设置用户注册的用户名一定要用中文,而且用户名是否与注册数据库中的重名。。。。代码如何实现
多谢拉!
多谢拉!
string sql = String.Format("select username from users where username='{0}'", this.txt_dlm.Text.Trim());
SqlCommand cm = new SqlCommand(sql, mycon.myconn);
if (cm.ExecuteScalar() != null)
{
this.Label1.Text = "<script language='javascript'>alert('该登陆名已经被使用,请使用其它登陆名~!');</script>";
}