主頁 > 知識(shí)庫 > Ajax實(shí)現(xiàn)異步刷新驗(yàn)證用戶名是否已存在的具體方法

Ajax實(shí)現(xiàn)異步刷新驗(yàn)證用戶名是否已存在的具體方法

熱門標(biāo)簽:地圖標(biāo)注多少錢一張 電銷機(jī)器人 數(shù)據(jù) 福州人工智能電銷機(jī)器人加盟 廣州銷售外呼系統(tǒng)定制 怎樣給陜西地圖標(biāo)注顏色 ai電銷機(jī)器人對(duì)貸款有幫助嗎 400電話辦理信任翰諾科技 宿遷智能外呼系統(tǒng)排名 云狐人工智能電話機(jī)器人

都是簡(jiǎn)單的實(shí)例,所以直接發(fā)代碼

靜態(tài)頁面Ajax.html

復(fù)制代碼 代碼如下:

html>
    head>
        title>Ajax/title>
        script type="text/javascript">
            function loadXMLDoc() {
                if (document.getElementById("account").value == "") {
                    document.getElementById("accDiv").innerHTML = "用戶名不能為空";
                    return;
                }
                var xmlHttp;
                if(window.XMLHttpRequest) { // code for IE7+
                    xmlHttp = new XMLHttpRequest();
                }
                else { // code for IE5/IE6
                    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
                }

                xmlHttp.onreadystatechange = function () {
                    if (xmlHttp.readyState == 4 xmlHttp.status == 200) {
                        //document.getElementById("myDiv").innerHTML=xmlHttp.responseText;
                        if (xmlHttp.responseText == "true") {
                            document.getElementById("accDiv").innerHTML = "用戶名不可用";
                        }
                        else {
                            document.getElementById("accDiv").innerHTML = "用戶名可用";
                        }
                    }
                }
                var a = document.getElementById("account").value;
                // get
                xmlHttp.open("GET", "validate.aspx?account=" + a + "random=" + Math.random, true);
                xmlHttp.send();
            }
            function delData() {
                document.getElementById("account").value = "";
                document.getElementById("accDiv").innerHTML = "";
            }
        /script>
    /head>
    body>
        h3>ajax/h3>
        table>
            tr>
                td>賬號(hào):/td>td>input id="account" type="text" onblur="loadXMLDoc();" onfocus="delData();"/>/td>td>div id="accDiv">/div>/td>
            /tr>
            tr>
                td>密碼:/td>td>input id="passwd" type="password" />/td>
            /tr>
            tr>
                td>確認(rèn)密碼:/td>td>input id="vPasswd" type="password" />/td>
            /tr>
            tr>
                td>姓名:/td>td>input id="name" type="text" />/td>
            /tr>
        /table>

    /body>
/html>


在賬號(hào)輸入框失去焦點(diǎn)時(shí)調(diào)用函數(shù)

訪問服務(wù)器使用的是Get方法,所以在參數(shù)處使用了附加隨機(jī)碼來避免緩存。

驗(yàn)證頁面validate.aspx后臺(tái)代碼:

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data.Sql;
using System.Data.SqlClient;

public partial class Ajax_validate_validate : System.Web.UI.Page
{
    public SqlConnection conn;

    protected void Page_Load(object sender, EventArgs e)
    {
        Response.Clear();
        if (Exists(Request.QueryString["account"]))
            Response.Write("true");
        else
            Response.Write("false");
        Response.End();
    }
    /// summary>
    /// 獲取數(shù)據(jù)庫連接
    /// /summary>
    /// returns>/returns>
    protected SqlConnection GetConnection()
    {
        string str = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
        conn = new SqlConnection(str);
        return conn;
    }
    protected bool Exists(string account)
    {
        using (GetConnection())
        {
            try
            {
                conn.Open();
                string sqlStr = "select count(*) from userinfo where account='" + account + "'";
                SqlCommand cmd = new SqlCommand(sqlStr, conn);
                int row = Convert.ToInt32(cmd.ExecuteScalar());
                if (row > 0)
                    return true;
                else
                    return false;
            }
            catch (Exception e)
            {
                throw e;
            }
            finally
            {
                conn.Close();
            }
        }
    }
}

在后臺(tái)中驗(yàn)證用戶名是否已經(jīng)存在于數(shù)據(jù)庫中,返回真或者假

運(yùn)行結(jié)果:

數(shù)據(jù)庫很簡(jiǎn)單,只建了一張表userinfo,有3個(gè)字段:account、passwd、name

注意:在后臺(tái)往請(qǐng)求頁面寫數(shù)據(jù)時(shí),當(dāng)寫完要發(fā)送的數(shù)據(jù)之后,需要調(diào)用Response.end()方法來終止寫入,否則可能會(huì)發(fā)送一個(gè)完整頁面過去。

您可能感興趣的文章:
  • jquery ajax 檢測(cè)用戶注冊(cè)時(shí)用戶名是否存在
  • Ajax實(shí)時(shí)驗(yàn)證用戶名/郵箱等是否已經(jīng)存在的代碼打包
  • PHP+Ajax異步通訊實(shí)現(xiàn)用戶名郵箱驗(yàn)證是否已注冊(cè)( 2種方法實(shí)現(xiàn))
  • 基于jQuery實(shí)現(xiàn)的Ajax 驗(yàn)證用戶名是否存在的實(shí)現(xiàn)代碼
  • jsp+ajax實(shí)現(xiàn)無刷新(鼠標(biāo)離開文本框即驗(yàn)證用戶名)實(shí)現(xiàn)思路
  • PHP+AJAX實(shí)現(xiàn)無刷新注冊(cè)(帶用戶名實(shí)時(shí)檢測(cè))
  • ajax 檢測(cè)用戶名是否被占用
  • Asp.net下利用Jquery Ajax實(shí)現(xiàn)用戶注冊(cè)檢測(cè)(驗(yàn)證用戶名是否存)
  • PHP+Ajax檢測(cè)用戶名或郵件注冊(cè)時(shí)是否已經(jīng)存在實(shí)例教程
  • Ajax異步檢查用戶名是否存在

標(biāo)簽:新疆 曲靖 延安 焦作 大興安嶺 黃南 綿陽 宜春

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Ajax實(shí)現(xiàn)異步刷新驗(yàn)證用戶名是否已存在的具體方法》,本文關(guān)鍵詞  Ajax,實(shí)現(xiàn),異步,刷新,驗(yàn)證,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ajax實(shí)現(xiàn)異步刷新驗(yàn)證用戶名是否已存在的具體方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于Ajax實(shí)現(xiàn)異步刷新驗(yàn)證用戶名是否已存在的具體方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章