AJAX之xmlHttp_AJAX教程
推荐:浅析AJAX初体验之上手篇HotHeart的BLog: www.xujiwei.cn/blog AJAX初体验之上手篇 AJAX是这两年蛮热的东西,我也凑凑热闹,前些天去找了些教程学学,下面就按整个处理过程把自己学的东西写写,不过,因为是初学,所以有错误就请见谅啦,欢迎指正^_^。 1.创建 XMLHttpRequest 对象
<script type="text/javascript" language="javascript">
<!--
//以XML求取数据
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 ('网络故障(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 Sub
End Class
分享:如何掌握AJAX之AJAX通讯技术当在网上冲浪时,将在浏览器和服务器之间存在大量的请求。最初,所有的这种请求都是在用户做出需要这一步骤的明显操作时发生的。Ajax技术将开发人员从等待用户做出这样的操作中解放出来,允许他在任何时间创建一个对服务器的调用。 Ajax通信支持许多不同的技
- 相关链接:
- 教程说明:
AJAX教程-AJAX之xmlHttp。