前台脚本:
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...)|收藏