主頁 > 知識(shí)庫 > Ajax+asp應(yīng)用實(shí)例 注冊(cè)模塊,表單提交

Ajax+asp應(yīng)用實(shí)例 注冊(cè)模塊,表單提交

熱門標(biāo)簽:長(zhǎng)沙防封電銷卡品牌 騰訊地圖標(biāo)注商戶關(guān)閉 西寧公司外呼系統(tǒng)平臺(tái) 武漢營銷電話機(jī)器人軟件 地圖標(biāo)注宅基地 智能電銷機(jī)器人適用于哪些行業(yè) 外呼系統(tǒng)還用卡么 徐州人工智能電銷機(jī)器人好用嗎 地圖標(biāo)注服務(wù)哪家好
!--注冊(cè)模塊-->default.asp
復(fù)制代碼 代碼如下:

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
title>Ajax - Sample1/title>
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> //請(qǐng)一定要將此頁的編碼設(shè)為UTF-8,否則將出現(xiàn)亂碼
meta name="author" content="tonyhl[at]126.com" />
meta http-equiv="pragma" content="no-cache"/>
script language="javascript" type="text/javascript" src="reg.js">/script>
link rel="stylesheet" href="css.css" type="text/css" media="all"/>
style type="text/css">
!--
#Layer1 {
position:absolute;
width:200px;
height:115px;
z-index:1;
left: 409px;
top: 88px;
}
-->
/style>
/head>
body>
h2>Ajax應(yīng)用實(shí)例: 注冊(cè)模塊/h2>
div id="Layer1">
div id="msg">/div>
/div>
ID: input type="text" id="regid" />
Password: input type="password" id="regpassword" />
input name="f" type="file" />
input type="submit" id="regsubmit" value="注冊(cè)" onclick="Check()" />
h2>當(dāng)注冊(cè)ID為 tony的用戶時(shí),后臺(tái)驗(yàn)證該ID已存在,返回提示信息br />
為突出顯示無刷新效果,服務(wù)器端程序?qū)⒆詣?dòng)進(jìn)行百萬加法運(yùn)算
/h2>
/body>
/html>

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

!----表單數(shù)據(jù)提交腳本--->REG.JS
function GE(a){return document.getElementById(a);}
function Check(){
if(GE('regid').value==''){GE('msg').innerHTML='ID不能為空';return false}
if(GE('regpassword').value==''){GE('msg').innerHTML='password 不能為空';return false}
var X=new ActiveXObject("Msxml2.XMLHTTP");
if(X){
GE('regsubmit').disabled=true;
X.onreadystatechange=function(){
if(X.readyState==4){
if(X.status==200){
eval(X.responseText)
}
else{GE('msg').innerHTML=X.statusText}
}
else{GE('msg').innerHTML="正在提交數(shù)據(jù)..."}
};
X.open('POST','reg.asp',true);
X.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
var SendData = 'regid='+GE('regid').value+'regpassword='+GE('regpassword').value+'file='+GE('f').value
X.send(SendData)
}
else{
GE('msg').innerHTML='你的瀏覽器不支持XMLHttpRequest'
}
}

!---程序處理--->reg.asp
復(fù)制代碼 代碼如下:

%@ LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>//CODEPAGE必須為650001,否則也出現(xiàn)亂碼,如果有HTML文字,一定設(shè)為UTF-8編碼,否則將出現(xiàn)亂碼.
%
Dim regid, regpassword, str
regid=Request.Form("regid")
regpassword=Request.Form("regpassword")
f=Request.Form("file")
Dim i, ii
ii = 0
For i = 0 To 1000000
ii = ii + i
Next
If regid="" or regpassword="" then
str = "ID和PASSWORD必須填寫"
Else
If regid > "tony" Then
str = "注冊(cè)成功,ID為" regid " , 密碼為" regpasswordf
Else
str = "注冊(cè)失敗,ID已經(jīng)存在"
End If
End if
Response.Write "GE('msg').innerHTML='" str "';GE('regsubmit').disabled=false"
Response.End
%>
您可能感興趣的文章:
  • ajax 技術(shù)和原理分析
  • 談?wù)凙jax原理實(shí)現(xiàn)過程
  • Ajax的內(nèi)部實(shí)現(xiàn)機(jī)制、原理與實(shí)踐小結(jié)
  • Ajax工作原理深入理解
  • jquery的ajax跨域請(qǐng)求原理和示例
  • 完成了AJAX樹附原理分析
  • ajax 文件上傳應(yīng)用簡(jiǎn)單實(shí)現(xiàn)
  • Ajax方式提交帶文件上傳的表單及隱藏iframe應(yīng)用
  • AngularJS入門教程之與服務(wù)器(Ajax)交互操作示例【附完整demo源碼下載】
  • Ajax PHP簡(jiǎn)單入門教程代碼
  • Ajax原理與應(yīng)用案例快速入門教程

標(biāo)簽:通化 荊門 雅安 通遼 鷹潭 運(yùn)城 巴彥淖爾 普洱

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Ajax+asp應(yīng)用實(shí)例 注冊(cè)模塊,表單提交》,本文關(guān)鍵詞  Ajax+asp,應(yīng)用,實(shí)例,注冊(cè),;如發(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+asp應(yīng)用實(shí)例 注冊(cè)模塊,表單提交》相關(guān)的同類信息!
  • 本頁收集關(guān)于Ajax+asp應(yīng)用實(shí)例 注冊(cè)模塊,表單提交的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章