用密码验证来保护动感首页更新的实现

2008-02-23 07:11:48来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

下面的程序是阿喔动感管理通用程序,非常简单不用解释了吧!

if username="admin" and password="admin" then

请记得修改两个admin分别用户名和密码!

login.ASP

<HTML>



 

<head>

<title>管理者登陆</title>

<link rel="stylesheet" href=../../"DOWNLOAD.CSS">

</head>



<body>

<div align="center"><center>



<table border="0" cellspacing="1" width="90%">

  <tr>

    <td> <form method="post" 

action="chklogin.ASP">

      <table width="45%" border="1"

 cellspacing="0" cellpadding="1" align="center"

      bordercolordark="#ecf5ff" 

bordercolorlight="#6699cc">

        <tr>

          <td><table 

width="100%" border="0" cellspacing="1" 

cellpadding="1">

            <tr>

               

       <td width="33%" 

align="right" height="30">用户名:</td>

              <td

 width="67%"><input name="username" maxlength="20" 

class="smallInput" size="20"> </td>

            </tr>

            <tr>

               

       <td width="33%" 

align="right" height="30">密 码:</td>

              <td

 width="67%"><input type="password" name="password"

 maxlength="16" class="smallInput"

              size=&

quot;20"> </td>

            </tr>

            <tr>

              <td

 colspan="2" height="15"></td>

            </tr>

          </table>

          </td>

        </tr>

        <tr align="center">

          <td 

height="40">

               

   <input type="submit" name="Submit" value="确

定" class="buttonface"> 

            

               

   <input type="reset" name="Submit2" value="重

写" class="buttonface">

               

    </td>

        </tr>

      </table>

    </form>

    <p align="center"> </td>

  </tr>

</table>

</center></div>

</body>

</HTML>





__________________________________________________________________



chklogin.ASP

<%

dim sql

dim rs

dim seekerrs

dim founduser

dim username

dim companyid

dim password

dim errmsg

dim founderr

founderr=false

FoundUser=false

username=request.form("username")

password=request.Form("password")

if username="" then

   response.redirect "index.ASP"

end if

if password="" then

     response.redirect "index.ASP"

end if



if username="admin" and password="admin" then

   response.cookies("adminok")=true

   response.redirect "manage.ASP"

else

     response.redirect "index.ASP"

end if

%>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:完全理解端口及常见端口作用!

下一篇:利用格式化字符串漏洞对系统发起攻击