xmlHttp数据存储

来源:互联网 发布:网络电话软件开发 编辑:程序博客网 时间:2024/06/05 07:47
在页面A点击确定按钮的时候,执行xmlHttp相关代买,然后跳转到页面B,现在想在页面B中获取页面A send的MyData数据,请问getDate.asp应该如何实现呢?

页面A:
xmlHttp.open("Post", "/getDate.asp?parmType=saveData&Type=1", false)
xmlHttp.send("MyData");
window.location.href = "页面B"  

页面B:
xmlHttp.open("Post", "/getDate.asp?parmType=getData", false)
xmlHttp.send("Type=1");

0 0
原创粉丝点击