[CODE] var http=new ActiveXObject("Msxml2.XMLHTTP")
var str="變量名=值"
http.open("POST","checkuser.aspx",false);
http.setRequestHeader("Content-Type","application/x-www-form-urlencoded")
http.send(str)
var bool=http.responsetext //獲取返回的結果
checkuser.aspx
response.clear()
user=request.form("變量名")
到數據庫去查找user
response.write(結果)
response.end[/CODE]