這篇文章主要為大家展示了“AJAX中xmlHttp的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“AJAX中xmlHttp的示例分析”這篇文章吧。
AJAX中xmlHttp
<script type="text/javascript" language="javascript"> <!-- //以XML求取數(shù)據(jù) function XmlPost(theEmail) { var webFileUrl = "../User/CheckUser.aspx?LogonName=" + theEmail; var result = ""; if (window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } //var xmlHttp = new ActiveXObject("MSXML2.XMLHTTP"); xmlHttp.open("POST", webFileUrl, false); xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); xmlHttp.send(""); xmlHttp.onreadystatechange=function() { if (xmlHttp.readyState==4) { result = xmlHttp.responseText; } } if(xmlHttp.status!=200) { alert ('網(wǎng)絡(luò)故障(xmlHttp.status='+xmlHttp.status+'),請稍后再試!'); } result = xmlHttp.responseText; result = result.substring(0,result.indexOf("?EX")); if(result != "false") { return true; } else { return false; } } //--> </script>''' <summary>''' 檢測用戶是否存在<文件名:../User/CheckUser.aspx>''' </summary>''' <remarks>Created by dzh @2006/06/27 18:22</remarks>Partial Class Web_User_CheckUser Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Request.QueryString("LogonName") Is Nothing Then Response.Write("false" + "?EX") Response.End() Exit Sub End If If (New EasyClick.EasyBusiness.UserBusiness).GetUserByLogonName(Request.QueryString("LogonName").ToString) Is Nothing Then Response.Write("false" + "?EX") Response.End() Exit Sub Else Response.Write("true" + "?EX") Response.End() Exit Sub End If End SubEnd Class
以上是“AJAX中xmlHttp的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
本文題目:AJAX中xmlHttp的示例分析-創(chuàng)新互聯(lián)
分享地址:http://vcdvsql.cn/article30/pjoso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、定制開發(fā)、網(wǎng)站建設(shè)、電子商務(wù)、微信小程序、軟件開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)