博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET 文本框失去焦点事件验证用户是否已经存在
阅读量:4879 次
发布时间:2019-06-11

本文共 1829 字,大约阅读时间需要 6 分钟。

新建一个网站,在web.config中添加代码:

<connectionStrings>

<add name="SqlConn" connectionString="server=.;database=Test;uid=sa;pwd=123"/>
</connectionStrings>

 

然后Default.aspx代码:

<body>

<form id="form1" runat="server">
  <div>
  用户名:

    <asp:TextBox ID="txtUserName" runat="server" ontextchanged="txtUserName_TextChanged" AutoPostBack="true" ></asp:TextBox>

    <asp:Label ID="lblMessage" runat="server" Text="用户名不能为空!" Font-Size="Small" ForeColor="Red"></asp:Label>

    <br />
    密码:

    <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>

    <asp:Label ID="Label2" runat="server" Text="密码长度6,由字符、数字、组成" Font-Size="Small" ForeColor="Red"></asp:Label>
  </div>
</form>
</body>

接着是Default.aspx.cs

public partial class _Default : System.Web.UI.Page

{
  protected void Page_Load(object sender, EventArgs e)
  {
  }
  protected void txtUserName_TextChanged(object sender, EventArgs e)
  {
    bool result = CheckUserName(txtUserName.Text.Trim());
    if (result == true)
    {
      lblMessage.Text = "恭喜您,此用户名可以使用!";
    }
    if (result == false)
    {
      lblMessage.Text = "该用户名已存在,请更换用户名!";
         }
  }
  public static bool CheckUserName(string username)
  {
    string connectionString = ConfigurationManager.ConnectionStrings["SqlConn"].ConnectionString;
    SqlConnection conn = new SqlConnection(connectionString);
    conn.Open();
    string sql = "select * from T_User where UserName = '" + username +"'";
    SqlCommand cmd = new SqlCommand(sql, conn);
    try
    {
      int count = Convert.ToInt32(cmd.ExecuteScalar());
      conn.Close();
      if (count > 0)
      {
        return false;
      }
      else
      {
        return true;
      }
    }
    catch (Exception ex)
    {
      Console.WriteLine(ex.Message);
      return false;
    }
  }
}

 

最后上图:

转载于:https://www.cnblogs.com/kelvin0916/archive/2012/10/10/2719131.html

你可能感兴趣的文章
判断是否为移动设备
查看>>
SQL注入原理
查看>>
作业一
查看>>
Matlab控制系统的建模及模型间的转换
查看>>
面向对象编程思想
查看>>
showModalDialog打开一个子窗口,在子窗口添加一条记录后,关闭子窗口刷新父窗口...
查看>>
微信支付体验
查看>>
Excel导数据到数据库
查看>>
zz 悲催的程序员,以及程序员的悲催
查看>>
Flv.js
查看>>
Java工程师成神之路
查看>>
线程池ThreadPoolExecutor整理
查看>>
如何将离线的PIP安装包快速安装好
查看>>
应对通过代理攻击服务器的方法
查看>>
TIPSO--基于JQUERY的消息提示框插件,用起来蛮顺手
查看>>
散列表(哈希表)
查看>>
Linux基础命令---显示域名ypdomainname
查看>>
Rails学习笔记(1)-Ubuntu12.04下的环境配置
查看>>
LeetCode - Remove Duplicates from Sorted Array
查看>>
object.__getattr__(self, name) 、object.__setattr__(self, name, value)
查看>>