如何在網頁中添加最近瀏覽網頁的IP和時間的代碼?
ip = Request.ServerVariables("REMOTE_ADDR") '獲取訪問者的IPnow_time = now '獲取登陸時間(服務器時間)完整的代碼如下dim conn,rs,ip,now_timeset conn=Server.CREATEOBJECT("ADODB.CONNECTION"
)DBPath = Server.MapPath("數據庫路徑")conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPathset rs=server.CreateObject("adodb.recordset"
)sql = "表名"rs.open sql,conn,3,2rs.addnewip = Request.ServerVariables("REMOTE_ADDR") '獲取訪問者的IPnow_time = now '獲取登陸時間(服務器時間)rs("字段名1") = iprs("字段名2") = now_timers.update