技术开发 频道

在ASP中如何防止同时登陆

  登陆成功后叶面会跳转到loginOK.asp

  以下为引用的内容:

<style type="text/css">
<!--
body {background-color: #FF9900;}
-->
</style>
<% IF Session("lgName")<>"" then %>

 

  您登陆成功了!!!下面是潜入网页内的iframe为的是在规定的时间刷新网页向服务器报告你是否在线

  为了便于区分,frame网页我们采用了白色作为底色

<iframe border=0 name=new_date marginwidth=0 framespacing=0 marginheight=0 src="loginFrame.asp"
frameborder
=0 noResize width=100 scrolling=no height=30 vspale="0"></iframe>
<% else %>

  您没有登陆哈

  以下为引用的内容:

  <% end if %>

  下面要做的是loginFrame.asp

  以下为引用的内容:

<!--#include file="loginCONN.ASP" -->
<% CONN_TOL8.Execute("Update onlyLogin Set OLtime=''"& NOW() & "'' where OLname = '' "& Session("lgName") & "''") %>
<html>
 <head>
  <meta http-equiv="refresh" content="<%=(maxTime-5)%>; url="">
 </head>
</html>

  到此为止程序就完成了,这个程序的关键就是判定用户是否在线。

0
相关文章