加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

如何编写 ASP.NET 用户的认证和授权程序

发布时间:2023-08-08 14:19:20 所属栏目:Asp教程 来源:
导读:asp+access用户登录代码,其中

huiyuan.mdb数据库名

pUser213 表名

y_username用户名字段,y_password密码字段.

login.htm页面

<head>

<meta http-equiv="Content-Type" content="text/html;
asp+access用户登录代码,其中
 
huiyuan.mdb数据库名
 
pUser213 表名
 
y_username用户名字段,y_password密码字段.
 
login.htm页面
 
<head>
 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
 
<title>登录</title>
 
</head>
 
<body>
 
<p> </p>
 
<form name="form1" method="post" action="loginnew.asp">
 
  <table width="200" border="1" align="center" cellpadding="0" cellspacing="0">
 
    <tr>
 
      <td colspan="2"><div align="center">登录</div></td>
 
    </tr>
 
    <tr>
 
      <td width="57"><div align="center">用户名</div></td>
 
      <td width="137" valign="top"><input name="username" type="text"
 
id="username" size="25"></td>
 
    </tr>
 
    <tr>
 
      <td><div align="center">密码</div></td>
 
      <td valign="top"><input name="password" type="password"
 
id="password" size="25"></td>
 
    </tr>
 
    <tr>
 
      <td colspan="2"><div align="center">
 
          <input type="submit" name="Submit" value="提交">
 
        </div></td>
 
    </tr>
 
  </table>
 
</form>
 
</body>
 
</html>
 
loginnew.asp网页
 
<%
 
dim username,password

 username=request.form("username")
 
 password=request.form("password")
 
 set rs=server.createobject("adodb.recordset")
 
 conn = "DBQ=" + server.mappath("huiyuan.mdb") + ";DefaultDir=;
 
DRIVER={Microsoft Access Driver (*.mdb)};"
 
 sql="select * from pUser213 where y_username='"&username&"'"
 
 rs.open sql,conn,1,1
 
 if rs.eof then
 
  response.write "<script>alert('登录失败');history.back();</script>"
 
  response.end
 
  else
 
    if rs("y_password")<>password then
 
      response.write "<script>alert('登录失败');history.back();</script>"
 
      response.end     
 
     end if      
 
     session("admin")=username
 
response.write"<script>alert('登录成功');location.href='index.asp'</script>"
 
  end if
 
%>
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章