怎样在关闭浏览器时更新数据库值?
发布网友
发布时间:2022-08-18 13:10
我来回答
共2个回答
热心网友
时间:2023-10-18 03:01
用xmlhttp就可以了
以下是全代码:
<html>
<script language="JavaScript">
<!--
var exit=true;
function ext()
{
if (exit)
var Str=1
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "out.asp?Name="+Str, false);
xmlhttp.send();
}
//--></script>
<body onunload="ext()">
</body>
</html>
out.asp
<!--#include file="conn.asp" --> //数据库连接文件
<%
ID=request("Name")
sql = "update [list] set up=1 where ID="&CInt(ID)
conn.Execute(sql)
%>
热心网友
时间:2023-10-18 03:02
这个除非是用session_end事件,不然只能用那个。