主頁(yè) > 知識(shí)庫(kù) > 一款經(jīng)典的ajax登錄頁(yè)面 后臺(tái)asp.net

一款經(jīng)典的ajax登錄頁(yè)面 后臺(tái)asp.net

熱門(mén)標(biāo)簽:辦理一個(gè)400電話多少錢(qián) 察縣地圖標(biāo)注 接聽(tīng)電話機(jī)器人哪有 信貸電銷(xiāo)機(jī)器人有用嗎 如何用地圖標(biāo)注各分公司 蓄意標(biāo)記地圖標(biāo)注 電銷(xiāo)機(jī)器人適用范圍 廣西ai語(yǔ)音電銷(xiāo)機(jī)器人哪家好 莆田防封電銷(xiāo)卡價(jià)格
下面實(shí)現(xiàn)一個(gè)經(jīng)典的登錄頁(yè)面,有保存密碼功能,頁(yè)面上所有的控件都是html控件,沒(méi)有服務(wù)器控件

1,新建一名為login.htm的靜態(tài)網(wǎng)頁(yè)文件,作為登錄頁(yè)面,如圖

body標(biāo)簽代碼

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

body onkeydown ="enterLogin()"> !--添加按下鍵盤(pán)事件-->

div style="text-align: center">
table border="1" cellpadding="1">
tr>
td align="center" style="width: 100px; height: 20px; background-color: #99cccc"
valign="middle">
用戶名:/td>
td align="center" style="width: 74px; height: 20px; background-color: #99cccc" valign="middle">
input id="txtusername" style="width: 111px; height: 19px" type="text" onblur ="checkuser()" />/td>
td align="center" style="width: 199px; height: 20px; background-color: #99cccc"
valign="middle">img src="" id ="imgCheck" style = "visibility :hidden; "/ >span id ="unMessage">
/span>/td>
/tr>
tr>
td align="center" style="width: 100px; height: 29px; background-color: #99cccc"
valign="middle">
密碼:/td>
td align="center" style="width: 74px; height: 29px; background-color: #99cccc" valign="middle">
input id="txtpwd" style="width: 107px; height: 17px" type="password" />/td>
td align="center" style="width: 199px; height: 29px; background-color: #99cccc"
valign="middle">span id ="pwdMessage">/span>
/td>
/tr>
tr>
td align="center" colspan="3" style="background-color: #99cccc" valign="middle">
input id="cbRememberPwd" type="checkbox" />記住密碼一個(gè)月/td>
/tr>
tr>
td align="center" colspan="3" style="background-color: #99cccc" valign="middle">
input id="btnOK" type="button" value="登錄" onclick ="login()" />
input id="btnReset" type="button" value="重置" onclick ="reset()" />/td>
/tr>
/table>
/div>

/body>

2,在login.htm中引入外部js代碼

script type ="text/javascript" src ="aj.js" >/script>
script type ="text/javascript" src ="loginCookies.js" >/script>

其中aj.js為ajax封裝的類,loginCookie.js為對(duì)Cookie操作的代碼

aj.js代碼如下

//JScript文件

//ajax請(qǐng)求功能函數(shù)
//
作者:吳寶佑
//
get調(diào)用方式:(1)實(shí)例化 var aj=new ajax(); (2)調(diào)用get函數(shù) aj.get(url,callback) (3)寫(xiě)回調(diào)函數(shù) function callback(xhr){xhr.responsetext}
//
post調(diào)用方式:(1)實(shí)例化 var aj=new ajax(); (2)調(diào)用post函數(shù) aj.post(url,content,callback) (3)寫(xiě)回調(diào)函數(shù) function callback(xhr){xhr.responsetext}

//構(gòu)造ajax對(duì)象

function ajax() 
{
    
function getXHR()//獲取xmlhttprequest
    {
        
var request=false;
        
try 
        {
            request 
= new XMLHttpRequest();
        } 
        
catch (trymicrosoft) 
        {
              
try 
              {
                request 
= new ActiveXObject("Msxml2.XMLHTTP");
              } 
              
catch (othermicrosoft) 
              {
                
try 
                {
                      request 
= new ActiveXObject("Microsoft.XMLHTTP");
                } 
                
catch (failed) 
                {
                      request 
= false;
                }
              }
        }
        
return request;
    }

    
this.get = function (openUrl,successFun)//ajax對(duì)象的get方法,通過(guò)get方式發(fā)送請(qǐng)求,openUrl為請(qǐng)求的頁(yè)面,successFun為成功回調(diào)執(zhí)行的函數(shù)
    {
        
var request = getXHR();
        request.open(
"get",openUrl,true);
//        request.onreadystatechange = function ()
//
        {
//
            if (request.readystate==4)
//
            {
//
                if (request.status==200)
//
                {
//
                    successFun(request);
//
                }
//
            }
//
        };
        request.onreadystatechange = update;
        
function update()
        {
            
if (request.readystate==4)
            {
                
if (request.status==200)
                {
                    successFun(request);
                }
            }
        }
        request.send(
null);
    }

    
this.post = function (openUrl,sendContent,successFun)//ajax對(duì)象的post方法,通過(guò)post方式發(fā)送請(qǐng)求,openUrl為請(qǐng)求的頁(yè)面,successFun為成功回調(diào)執(zhí)行的函數(shù)
    {
        
var request = getXHR();
        request.open(
"post",openUrl,true);
        request.setRequestHeader(
"Content-Type""application/x-www-form-urlencoded");//告訴服務(wù)器發(fā)送的是文本
        request.onreadystatechange = update;
        
function update()
        {
            
if (request.readystate==4)
            {
                
if (request.status==200)
                {
                    successFun(request);
                }
            }
        }
        request.send(sendContent);
    }
}

loginCookie.js代碼如下

//JScript文件

//SetCookie 保存一個(gè)Cookie。參數(shù)中除了name和value以外,其他可以省略。
//
GetCookie 通過(guò)一個(gè)Cookie的名字取出它的值。
//
DelCookie 刪除一個(gè)Cookie,也就是讓一個(gè)Cookie立刻過(guò)期。參數(shù)中除了name,其他可以省略。


//測(cè)試
//
SetCookie("username", "123");expires代表"月"
//
alert(GetCookie("username"));
//
DelCookie("username");
//
alert(GetCookie("username"));



function SetCookie(name, value, expires, path, domain, secure) {
  
var today = new Date();
  today.setTime(today.getTime());
  
if(expires) { expires *= 2592000; }
  
var expires_date = new Date(today.getTime() + (expires));
  document.cookie 
= name + "=" + escape(value)
    
+ (expires ? ";expires=" + expires_date.toGMTString() : "")
    
+ (path ? ";path=" + path : "")
    
+ (domain ? ";domain=" + domain : "")
    
+ (secure ? ";secure" : "");
}

function GetCookie(name) {
  
var cookies = document.cookie.split( ';' );
  
var cookie = '';

  
for(var i=0; icookies.length; i++) {
    cookie 
= cookies[i].split('=');
    
if(cookie[0].replace(/^\s+|\s+$/g, ''== name) {
      
return (cookie.length = 1? "" : unescape(cookie[1].replace(/^\s+|\s+$/g, ''));
    }
  }
  
return null;
}

function Delcookie(name, path, domain) {
  document.cookie 
= name + "="
    
+ (path ? ";path=" + path : "")
    
+ (domain ? ";domain=" + domain : "")
    
+ ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
}

3,寫(xiě)login.htm頁(yè)面中的js代碼,放在head標(biāo)簽之間

    script type ="text/javascript" >
        window.onload 
= function (){
            document.getElementById (
'txtusername').focus();//用戶名框獲得焦點(diǎn)

            
if (GetCookie('user_name'!= null  GetCookie('user_pwd'!= null)//設(shè)置記住密碼的登錄頁(yè)面
            {
                document.getElementById (
"txtusername").value = GetCookie('user_name');
                document.getElementById (
"txtpwd").value = GetCookie('user_pwd');
            }
        }

        String.prototype.Trim 
= function() //自定義的去除字符串兩邊空格的方法
        { 
            
return this.replace(/(^\s*)|(\s*$)/g, ""); 
        } 

        
function checkuser()//檢驗(yàn)用戶名是否正確
        {
            
var img = document.getElementById ("imgCheck")
            img.src
="iamges/blue-loading.gif";//設(shè)置圖片及其可見(jiàn)性
            img.style.visibility = "visible";

            
var aj = new ajax();//以下為ajax請(qǐng)求
            var username = document.getElementById ("txtusername").value.Trim();
            
var url = "login.aspx?uname="+escape(username);
            aj.get(url,callback);
            
function callback(obj)
            {
                
var response = obj.responsetext;
                
var res = response.split('\n');
                
if (res[0== "ok")
                {
                    img.src
="iamges/icon-info.gif";
                    document.getElementById (
"unMessage").innerHTML = "font color='#00ff00'>用戶名正確/font>";
                }
                
else
                {
                    img.src
="iamges/icon-warning.gif";
                    document.getElementById (
"unMessage").innerHTML = "font color='#ff0000'>用戶名錯(cuò)誤/font>";
                }
            }
        }

        
        
function login()//登錄
        {
            
if (document.getElementById ("unMessage").innerText == "用戶名錯(cuò)誤")
            {
                alert(
"你的用戶名錯(cuò)誤");
            }
            
else if (document.getElementById ("txtpwd").value == "")
            {
                alert(
"請(qǐng)輸入密碼");
            }
            
else
            {
                
var aj = new ajax();
                
var username = document.getElementById ("txtusername").value.Trim();
                
var userpwd = document.getElementById ("txtpwd").value;
                
var url = "login.aspx?name="+escape(username)+"pwd="+escape(userpwd);
                aj.get(url,callback);
                
function callback(obj)
                {
                    
var response = obj.responsetext;
                    
var res = response.split('\n');
                    
if (res[0== "ok")
                    {
                        
if (document.getElementById ("cbRememberPwd").checked)
                        {
                            SetCookie(
'user_name',username,1);//保存密碼一個(gè)月
                            SetCookie('user_pwd',userpwd,1);
                        }
                        
else
                        {
                            SetCookie(
'user_name',username);
                            SetCookie(
'user_pwd',userpwd);
                        }
                        window.open (
"loginIndex.htm","_self");
                    }
                    
else
            p;            {
                        alert(
"密碼錯(cuò)誤");
                    }
                }
            }
        }

        
function reset()//重置
        {
            window.onload();
//執(zhí)行窗體登錄事件
            document.getElementById ("txtusername").value="";
            document.getElementById (
"txtpwd").value="";
        }

        
function enterLogin()
        {
            
if (event.keyCode==13//如果按下的是Enter鍵的話,就執(zhí)行登錄語(yǔ)句
            {
                login();
            }
        }
    
/script>

4,新建一名為login.aspx的頁(yè)面,該頁(yè)面作為ajax請(qǐng)求的頁(yè)面,login.aspx.cs代碼如下

    protected void Page_Load(object sender, EventArgs e)
    {
        OleDbConnection Conn 
= DBcon.get_con();

        
if (Request["uname"!= null)
        {
            
string username = Request["uname"].ToString();
            
string strSql = "select * from [user] where u_name='" + username + "'";
            Conn.Open();
            OleDbCommand Comd 
= new OleDbCommand(strSql, Conn);
            OleDbDataReader dr 
= Comd.ExecuteReader();
            
if (dr.Read())
            {
                Response.Write(
"ok\n");
            }
            
else
            {
                Response.Write(
"fail\n");
            }
            
//if (Comd.ExecuteNonQuery() > 0)
            
//{
            
//    Response.Write("存在這個(gè)用戶\n");
            
//}
            
//else
            
//{
            
//    Response.Write("沒(méi)有此用戶名\n");
            
//}
            Conn.Close();
        }

        
if (Request["name"!= null  Request["pwd"!= null)
        {
            
string name = Request["name"].ToString();
            
string pwd = Request["pwd"].ToString();
            
string strSql = "select * from [user] where u_name='" + name + "'" + " and u_pwd='" + pwd + "'";
            Conn.Open();
            OleDbCommand Comd 
= new OleDbCommand(strSql, Conn);
            OleDbDataReader dr 
= Comd.ExecuteReader();
            
if (dr.Read())
            {
                Response.Write(
"ok\n");
            }
            
else
            {
                Response.Write(
"fail\n");
            }
        }
    }

5,新建一名為loginIndex.htm的靜態(tài)頁(yè)面,作為用戶登錄之后的首頁(yè)

其body標(biāo)簽代碼如下

body>
    
span id ="username"> /span>
/body>

6,在loginIndex.htm頁(yè)面引入loginCookie.js文件

script type ="text/javascript" src ="loginCookies.js" >/script>

7,寫(xiě)loginIdex.htm頁(yè)面的js代碼,放在head標(biāo)簽之間

    script type ="text/javascript" >
        window.onload 
= function ()
        {
            
if(GetCookie('user_name')==null || GetCookie('user_pwd')==null)//如果沒(méi)有登錄,而是直接在網(wǎng)頁(yè)中輸入網(wǎng)址的
            {
                alert(
'你還沒(méi)有登錄!\n返回到登陸頁(yè)面。');
                window.navigate(
"login.htm");
            }
            
else
            {
                
var uname = GetCookie('user_name');
                document.getElementById (
'username').innerHTML ="歡迎你: " + uname + "nbsp; nbsp; nbsp;a href='#' onclick = 'off()'>注銷(xiāo)/a>";//提供"注銷(xiāo)"按鈕
            }
        }

        
function off()//注銷(xiāo)事件
        {
            
if (window.confirm("你真要注銷(xiāo)嗎?"))
            {
                Delcookie(
"user_name");
                Delcookie(
"user_pwd");
                window.navigate(
"login.htm");
            }
        }
    
/script>

8,完成,客戶端代碼較多,但是交互性很好

演示如下:

當(dāng)輸入完用戶名,鼠標(biāo)光標(biāo)離開(kāi)用戶名框之后,系統(tǒng)會(huì)快速檢驗(yàn)用戶名是否合法



進(jìn)入首頁(yè)后,出現(xiàn)的窗口,帶有當(dāng)前登錄的用戶和注銷(xiāo)按鈕


當(dāng)用戶點(diǎn)擊注銷(xiāo)按鈕時(shí),會(huì)友情提示你是否真的注銷(xiāo)


當(dāng)你不是輸入用戶和密碼登陸,也是直接在瀏覽器地址欄中輸入首頁(yè)網(wǎng)址的時(shí)候,系統(tǒng)會(huì)提示你沒(méi)有登錄,并直接返回到登陸頁(yè)面。


當(dāng)用戶輸入了有效的用戶名和密碼,并要求系統(tǒng)記住密碼,用戶下次進(jìn)入到登錄頁(yè)面時(shí),系統(tǒng)會(huì)把上次記住的用戶名和密碼顯示在輸入框中。。
并且這個(gè)時(shí)候直接在瀏覽器的地址欄中輸入首頁(yè)地址,也是能正常訪問(wèn)的。


nbsp;       {
                        alert("密碼錯(cuò)誤");
                    }
                }
            }
        }

        
function reset()//重置
        {
            window.onload();
//執(zhí)行窗體登錄事件
            document.getElementById ("txtusername").value="";
            document.getElementById (
"txtpwd").value="";
        }

        
function enterLogin()
        {
            
if (event.keyCode==13//如果按下的是Enter鍵的話,就執(zhí)行登錄語(yǔ)句
            {
                login();
            }
        }
    
/script>

4,新建一名為login.aspx的頁(yè)面,該頁(yè)面作為ajax請(qǐng)求的頁(yè)面,login.aspx.cs代碼如下

    protected void Page_Load(object sender, EventArgs e)
    {
        OleDbConnection Conn 
= DBcon.get_con();

        
if (Request["uname"!= null)
        {
            
string username = Request["uname"].ToString();
            
string strSql = "select * from [user] where u_name='" + username + "'";
            Conn.Open();
            OleDbCommand Comd 
= new OleDbCommand(strSql, Conn);
            OleDbDataReader dr 
= Comd.ExecuteReader();
            
if (dr.Read())
            {
                Response.Write(
"ok\n");
            }
            
else
            {
                Response.Write(
"fail\n");
            }
            
//if (Comd.ExecuteNonQuery() > 0)
            
//{
            
//    Response.Write("存在這個(gè)用戶\n");
            
//}
            
//else
            
//{
            
//    Response.Write("沒(méi)有此用戶名\n");
            
//}
            Conn.Close();
        }

        
if (Request["name"!= null  Request["pwd"!= null)
        {
            
string name = Request["name"].ToString();
            
string pwd = Request["pwd"].ToString();
            
string strSql = "select * from [user] where u_name='" + name + "'" + " and u_pwd='" + pwd + "'";
            Conn.Open();
            OleDbCommand Comd 
= new OleDbCommand(strSql, Conn);
            OleDbDataReader dr 
= Comd.ExecuteReader();
            
if (dr.Read())
            {
                Response.Write(
"ok\n");
            }
            
else
            {
                Response.Write(
"fail\n");
            }
        }
    }

5,新建一名為loginIndex.htm的靜態(tài)頁(yè)面,作為用戶登錄之后的首頁(yè)

其body標(biāo)簽代碼如下

body>
    
span id ="username"> /span>
/body>

6,在loginIndex.htm頁(yè)面引入loginCookie.js文件

script type ="text/javascript" src ="loginCookies.js" >/script>

7,寫(xiě)loginIdex.htm頁(yè)面的js代碼,放在head標(biāo)簽之間

    script type ="text/javascript" >
        window.onload 
= function ()
        {
            
if(GetCookie('user_name')==null || GetCookie('user_pwd')==null)//如果沒(méi)有登錄,而是直接在網(wǎng)頁(yè)中輸入網(wǎng)址的
            {
                alert(
'你還沒(méi)有登錄!\n返回到登陸頁(yè)面。');
                window.navigate(
"login.htm");
            }
            
else
            {
                
var uname = GetCookie('user_name');
                document.getElementById (
'username').innerHTML ="歡迎你: " + uname + "nbsp; nbsp; nbsp;a href='#' onclick = 'off()'>注銷(xiāo)/a>";//提供"注銷(xiāo)"按鈕
            }
        }

        
function off()//注銷(xiāo)事件
        {
            
if (window.confirm("你真要注銷(xiāo)嗎?"))
            {
                Delcookie(
"user_name");
                Delcookie(
"user_pwd");
                window.navigate(
"login.htm");
            }
        }
    
/script>

8,完成,客戶端代碼較多,但是交互性很好

演示如下:

當(dāng)輸入完用戶名,鼠標(biāo)光標(biāo)離開(kāi)用戶名框之后,系統(tǒng)會(huì)快速檢驗(yàn)用戶名是否合法



進(jìn)入首頁(yè)后,出現(xiàn)的窗口,帶有當(dāng)前登錄的用戶和注銷(xiāo)按鈕


當(dāng)用戶點(diǎn)擊注銷(xiāo)按鈕時(shí),會(huì)友情提示你是否真的注銷(xiāo)


當(dāng)你不是輸入用戶和密碼登陸,也是直接在瀏覽器地址欄中輸入首頁(yè)網(wǎng)址的時(shí)候,系統(tǒng)會(huì)提示你沒(méi)有登錄,并直接返回到登陸頁(yè)面。


當(dāng)用戶輸入了有效的用戶名和密碼,并要求系統(tǒng)記住密碼,用戶下次進(jìn)入到登錄頁(yè)面時(shí),系統(tǒng)會(huì)把上次記住的用戶名和密碼顯示在輸入框中。。
并且這個(gè)時(shí)候直接在瀏覽器的地址欄中輸入首頁(yè)地址,也是能正常訪問(wèn)的。


您可能感興趣的文章:
  • Ajax異步方式實(shí)現(xiàn)登錄與驗(yàn)證
  • ajax 實(shí)現(xiàn)微信網(wǎng)頁(yè)授權(quán)登錄的方法
  • ajax實(shí)現(xiàn)登錄功能
  • Ajax實(shí)現(xiàn)帶有驗(yàn)證碼的局部刷新登錄界面
  • div彈出層的ajax登錄(Jquery版+c#)
  • Ajax Session失效跳轉(zhuǎn)登錄頁(yè)面的方法
  • ajax編寫(xiě)簡(jiǎn)單的登錄頁(yè)面
  • Ajax實(shí)現(xiàn)漂亮、安全的登錄界面
  • 登錄超時(shí)給出提示跳到登錄頁(yè)面(ajax、導(dǎo)入、導(dǎo)出)
  • Ajax實(shí)現(xiàn)登錄案例

標(biāo)簽:張掖 阿拉善盟 銅陵 益陽(yáng) 鷹潭 儋州 延邊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《一款經(jīng)典的ajax登錄頁(yè)面 后臺(tái)asp.net》,本文關(guān)鍵詞  一款,經(jīng)典,的,ajax,登錄,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《一款經(jīng)典的ajax登錄頁(yè)面 后臺(tái)asp.net》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于一款經(jīng)典的ajax登錄頁(yè)面 后臺(tái)asp.net的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章