标题:[求助]用户名检测程序
取消只看楼主
pietro
Rank: 1
等 级:新手上路
帖 子:54
专家分:0
注 册:2006-9-19
 问题点数:0 回复次数:1 
[求助]用户名检测程序

做了一个用户名检测程序,检测出错,无论用户名存在不存在都检测不出来,高手帮我看看那里错了 ???



类代码:
public static bool judge(string userName)
{
bool blf;
SqlConnection con=new SqlConnection("server=.;database=login;uid=sa;pwd=;");
con.Open();
string strSQL = "select count(*) from [user] where userName='" + userName + "'";
SqlCommand cmd = new SqlCommand(strSQL, con);
int count = (int)cmd.ExecuteScalar();
if (count > 0)
{
blf = false;
}
else
{
blf = true;
}
return blf;

}


自定义控件代码:
protected void CustomValidator2_ServerValidate(object source, ServerValidateEventArgs args)
{

string userName = this.TextBox1.Text;

if (db.judge(userName))
{
args.IsValid = true;
}
else
{

args.IsValid = false;
}
}


搜索更多相关主题的帖子: 检测 用户名 
2006-09-30 12:21
pietro
Rank: 1
等 级:新手上路
帖 子:54
专家分:0
注 册:2006-9-19
得分:0 
谢谢各位,你们说的都不对,我终于找到答案了,原来把
string userName = this.TextBox1.Text;
改为:
string userName = args.Value;
就可以了
2006-10-02 00:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-93744-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.870424 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved