<% Dim CONN_TOL8 Dim Conn_T Dim mmdd mmdd="onlyTOL8.mdb" Set CONN_TOL8 = Server.CreateObject("ADODB.Connection") Conn_T="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath(""&mmdd&"") on error resume next CONN_TOL8.Open Conn_T %>
下面做一个loginPost.asp文件也存在这个目录下,这是关键,仔细看下面的代码:
以下为引用的内容:
<!--#include file="loginCONN.asp" --> <% ''删除maxTime时间内部活动的用户,maxTime 在loginCONN.asp文件里面已经定义好了 Conn_TOL8.Execute("Delete From onlyLogin where DATEDIFF(''s'',OLtime, now()) > "& maxTime & "") ''================================================================ Dim rs, ts, txt, sql, userName, userPass if Request.Form("Submit")="Login" then userName=Request.Form("userName")''获取表单用户登陆名 userPass=Request.Form("userPass")''获取表单用户登陆密码 ''由于我们这里讨论的不是安全问题所以用户密码都没有加密 Set rs = Server.CreateObject(