| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 519 人关注过本帖
标题:[求助]用户名检测程序
取消只看楼主 加入收藏
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
快速回复:[求助]用户名检测程序
数据加载中...
 
   



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

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