张海波

程序伴随你我的每一天~HappyCode

原创 Ajax提交数据收藏

新一篇: AJAX大量数据xml格式提交 | 旧一篇: 网页粘度

前台脚本:Ajax.aspx <script type="text/javascript">      function InsertData(state)     {         var oHttpReq = new ActiveXObject("MSXML2.XMLHTTP");         var oDoc = new ActiveXObject("MSXML2.DOMDocument");         oHttpReq.open("POST", "GetData.aspx?zhb="+ state, false);         oHttpReq.send("");         result = oHttpReq.responseText;         document.getElementById("Button1").value=result;    }   function Button1_onclick() { InsertData(document.getElementById("TextBox1").value) }     </script> 后台功能代码:GetData.aspx          try     {         string S = Request.QueryString.Get("zhb");         UserEmai_Info _UserEmai_Info = new UserEmai_Info();         _UserEmai_Info.UserEmaiAddress = S;         _UserEmai_Info.AddDate = DateTime.Now;         _UserEmai_Info.Save();         Response.Write("OK");     }     catch (System.Exception e)     {         Response.Write("Eror");     } 其中GetData.aspx页面前台html代码全部清除,只保留后台业务逻辑代码(暂时这样称呼吧)即可实现无刷新提交数据

发表于 @ 2008年03月05日 14:17:00|评论(loading...)|收藏

新一篇: AJAX大量数据xml格式提交 | 旧一篇: 网页粘度

评论

#sdf 发表于2008-06-03 09:28:37  IP: 222.172.137.*
好的
发表评论  


登录
Csdn Blog version 3.1a
Copyright © lover梅子