| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 350 人关注过本帖
标题:登陆名称记忆
只看楼主 加入收藏
玲珑880
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2008-4-16
结帖率:100%
收藏
 问题点数:0 回复次数:0 
登陆名称记忆
下面这段 要多加登陆记忆 怎么修改呢?
<!--#include file="mdb.asp"-->
<!--#include file="inc/config.asp"-->
<!--#include file="inc/md5.asp"-->
<%
dim adminname
dim adminpwd
if former_yes="1" then
   UserName=request.Cookies("HX_USER")("User_Name")
   former_names=split(former_name,"|")
   for z=0 to ubound(former_names)
       if instr(UserName,former_names(z))>0 then
          founderr=true
          exit for
       end if
   next
   if founderr<>true then
       Response.Write("<script language=javascript>alert('你没有登陆此页面的权限,请登陆前台后操作。');this.location.href='index.asp';</script>")
   end if
end if
if request.QueryString("action")="search" then
    dim word,engine
    word = request.Form("word")
    engine = request.Form("search")
    Select case engine
        case "3721"
            response.Redirect("http://cns.)
            response.End()
        case "google"
            response.Redirect("http://www.)
            response.End()
        case "baidu"
            response.Redirect("http://www.baidu.com/baidu?word="&word)
            response.End()
        case "sina"
            response.Redirect("http://search.)
            response.End()
    end select
end if

if request("action")="adminlogin" then
       s=Trim(Request.Form("s"))
       s2=Request.Form("s2")
       If s2<>s Then
              Response.Write("<script language=javascript>alert('请输入正确的认证码!');this.location.href='admin.asp';</script>")
           Response.End
       end if
thesoft=Request.ServerVariables("HTTP_USER_AGENT")
if instr(thesoft,"Windows NT 5.0") then
    vOS="Win 2000"
elseif instr(thesoft,"Windows NT 5.1") then
    vOs="Win XP"
elseif instr(thesoft,"Windows NT") then
    vOs="Win NT"
elseif instr(thesoft,"Windows 9") then
    vOs="Win 9x"
elseif instr(thesoft,"unix") or instr(thesoft,"linux") or instr(thesoft,"SunOS") or instr(thesoft,"BSD") then
    vOs="类Unix"
elseif instr(thesoft,"Mac") then
    vOs="Mac"
else
    vOs="Other"
end if
server_v1=Cstr(Request.ServerVariables("HTTP_REFERER"))
server_v2=Cstr(Request.ServerVariables("SERVER_NAME"))
if mid(server_v1,8,len(server_v2))<>server_v2 then
Response.Write("<script language=javascript>alert('你提交的路径有误,禁止从站点外部提交数据请不要乱该参数!');this.location.href='admin.asp';</script>")
response.end
end if
Function ReplaceBadWord(g_word)
  g_word=Replace(g_word,"'","")
  g_word=Replace(g_word," ","")
  g_word=Replace(g_word,"&","")
  g_word=Replace(g_word,"(","")
  g_word=Replace(g_word,"\","")
  g_word=Replace(g_word,"/","")
  g_word=Replace(g_word,"..","")
  g_word=Replace(g_word,"^","")
  g_word=Replace(g_word,"#","")
  g_word=Replace(g_word,"%","")
  g_word=Replace(g_word,"|","")
  g_word=Replace(g_word,";","")
  g_word=Trim(Replace(g_word,")",""))  
  ReplaceBadWord=g_word
End Function
adminname=ReplaceBadWord(Request.form("adminname"))
adminpwd=Md5(ReplaceBadWord(Request.form("adminpwd")))
if adminname="" OR adminpwd="" then
              Response.Write("<script language=javascript>alert('请输入用户名或密码!');this.location.href='admin.asp';</script>")
           Response.End
end if
sql="select * from admin where admin_name='"&adminname&"' and admin_password='"&adminpwd&"'"
set rs=conn.execute(sql)
if rs.eof and rs.bof then
   rs.close
   set rs=nothing
              Response.Write("<script language=javascript>alert('您输入的用户名和密码不正确!!');this.location.href='admin.asp';</script>")
   set rs1=Server.Createobject("adodb.recordset")
   sql1="Select * from Log"
   rs1.open sql1,conn,3,3
   rs1.addnew
   rs1("Username")=adminname
   rs1("LoginIP")=request.ServerVariables("Remote_Addr")
   rs1("OS")=vOS
   rs1("ErrorPas")=ReplaceBadWord(Request.form("adminpwd"))
   rs1("Result")="Error"
   rs1.update
   rs1.close
   set rs1=nothing
   elseif rs("lock")=1 then
        response.Write"<script language=javascript>alert(' 错误:帐号 "&rs("admin_name")&" 已被锁定,你不能登陆!请联系站长。');this.location.href='admin.asp';</script>"
           Response.End
else
   response.cookies("hxStudioUserName")=rs("admin_Name")
   session("adminlogin")=sessionvar
   session("issuper")=rs("admin_id")
   session.timeout=500
   Session("CheckCode")=""
   Session("hxStudioAdminName")=rs("admin_Name")
   Session("hxStudioAdminDj")=rs("dj")
   Session("hxStudioAdminAdmin")=rs("admin")
   Session("hxType")=rs("type")
   set rs1=Server.Createobject("adodb.recordset")
   sql1="Select * from Log"
   rs1.open sql1,conn,3,3
   rs1.addnew
   rs1("Username")=adminname
   rs1("LoginIP")=request.ServerVariables("Remote_Addr")
   rs1("OS")=vOS
   rs1.update
   rs1.close
   rs.close
   set rs=nothing
end if
elseif request("action")="logout" then
  Session("hxStudioAdminName")=""
  Session("hxStudioAdminDj")=""
  session("adminlogin")=""
  session("issuper")=""
  Response.write "<script>window.document.location.href='./admin.asp';</script>"
end if

if session("adminlogin")=sessionvar then
frame=request("frame")
if frame="" then
%>
<html>
<head>
<title>∷ HxCms管理中心 ∷</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<STYLE>.navPoint {
    COLOR: white; CURSOR: hand; FONT-FAMILY: Webdings; FONT-SIZE: 9pt
}
P {
    FONT-SIZE: 9pt
}
</STYLE>
<SCRIPT>
function switchSysBar(){
    if (switchPoint.innerText==3){
        switchPoint.innerText=4
        document.all("frmTitle").style.display="none"
    }
    else{
        switchPoint.innerText=3
        document.all("frmTitle").style.display=""
    }
}
</SCRIPT>
</HEAD>
<BODY scroll=no style="MARGIN: 0px">
<frameset rows='*' id='Frame' cols='165,*' framespacing='0' frameborder='no' border='0'>
<TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">
  <TBODY>
  <TR>
    <TD align=middle id=frmTitle noWrap vAlign=center name="frmTitle">
       <IFRAME scrolling=auto frameBorder=0 id='menu' name='menu' src='?frame=menu' style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 175; Z-INDEX: 2"></IFRAME>
    </TD>
    <TD bgColor=#1B70C4 onclick=switchSysBar() style="WIDTH: 10pt">
       <SPAN class=navPoint id=switchPoint title=关闭/打开左栏>3</SPAN>
    </TD>
    <TD style="WIDTH: 100%">
       <IFRAME frameBorder=0 id='main' name='main' scrolling=yes src='?frame=main' style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 1"></IFRAME>
    </TD>
  </TR>
  </TBODY>
</TABLE>
</frameset>
<noframes>
 <body>
  <p>本页使用了框架结构,但是您的浏览器不支持它。请将您的浏览器升级为IE5.0或更高的版本!</p>
 </body>
</noframes>
</BODY></HTML>
<%elseif frame="menu" then%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Hx.CMS管理菜单</title>
<style type="text/css">
body{FONT-SIZE: 12px;COLOR: #000000; FONT-FAMILY: "宋体";background-color: #799AE1;SCROLLBAR-FACE-COLOR: #799AE1; SCROLLBAR-HIGHLIGHT-COLOR: #799AE1;SCROLLBAR-SHADOW-COLOR: #799AE1; SCROLLBAR-DARKSHADOW-COLOR: #799AE1;SCROLLBAR-3DLIGHT-COLOR: #799AE1; SCROLLBAR-ARROW-COLOR: #FFFFFF;SCROLLBAR-TRACK-COLOR: #AABFEC;}
.menutitle{ cursor:pointer; margin-bottom: 0px; background-image=url(img/menu_1.gif);color:#FFFFFF; width:158px; padding:0px; text-align:center; font-weight:bold; border:0px ; }}
.submenu{ margin-bottom: 0em; }
.cn { FONT-SIZE: 9pt; COLOR: #006599; FONT-FAMILY: 宋体 }
TD{ font-family:宋体; font-size: 12px; line-height: 15px;}
a  { font:normal 12px 宋体; color:#000000; text-decoration:none; }
a:hover  { color:#428EFF;text-decoration:underline; }
</style>
<script language="javascript" type="text/javascript">
if (document.getElementById){ // change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
    if(document.getElementById){
    var el = document.getElementById(obj);
    var ar = document.getElementById("masterdiv").getElementsByTagName("span"); // change
        if(el.style.display != "block"){ // change
            for (var i=0; i<ar.length; i++){
                if (ar[i].className=="submenu") // change
                ar[i].style.display = "none";
            }
            el.style.display = "block";
        }else{
            el.style.display = "none";
        }
    }
}

function killErrors() {
return true;
}
window.onerror = killErrors;
</script>
</head>
<BODY leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">
<div id="masterdiv">
<TABLE width="158" cellSpacing="0" cellPadding="0" border="0" background="img/menu_1.gif" height=60>
<tr>
 <td colspan='2'><div align="center"><img src="img/cmslogo.gif" border="0"></div></td>
</tr>
<tr>
  <td><a href="?frame=main" target="main"><img src="img/left_fold1.gif" alt="" border="0"> 管理首页</a></td>
  <td><a href="?action=logout" target="_top"><img src="img/left_fold1.gif" alt="" border="0"> 安全退出</a></td>
</tr>
</table>
<TABLE width="158" cellSpacing="0" cellPadding="0" border="0">
<TR>
   <TD bgColor="#ffffff" height="1"></TD>
</TR>
<TR>
   <TD height="5" background="img/menu_1.gif"></TD>
</TR>
</TABLE>
    <div class="menutitle" onclick="SwitchMenu('sub0')"><img src="img/left_fold1.gif" alt="" border="0"> 个人信息
    <TABLE width="158" cellSpacing="0" cellPadding="0" border="0">
      <TR>
        <TD height="5"></TD>
      </TR>
      <TR>
         <TD bgColor="#ffffff" height="1"></TD>
      </TR>
     </TABLE>
     </div>
     <span class="submenu" id="sub0">
    <TABLE cellSpacing="0" cellPadding="0" width="158" background="img/menu_2.gif" border="0">
      <TR>
         <td width="15%"></td><TD height=25 width="85%"><img src="img/left_fold2.gif" alt="" border="0"> 帐号:<strong><%=Session("hxStudioAdminName")%></strong></TD>
      </TR>
      <TR>
         <td width="15%"></td><TD height=25 width="85%"><img src="img/left_fold2.gif" alt="" border="0"> 等级:<strong><font color="#FF0000"><%
    if Session("hxStudioAdminDj")=1 then response.write "栏目管理员"
    if Session("hxStudioAdminDj")=4 then response.write "超级管理员"
    %></font></strong></TD>
      </TR>
      <TR>
         <td width="15%"></td><TD height=25 width="85%"><a target="main" href=admin_main.asp><img src="img/left_fold2.gif" alt="" border="0"> 查看权限\修改密码</a></TD>
      </TR>
         </table>
     </span>
        <TABLE width="158" cellSpacing="0" cellPadding="0" border="0">
      <TR>
         <TD height="5" background="img/menu_1.gif"></TD>
     </TR>
       </TABLE>

       <TABLE width="158" cellSpacing="0" cellPadding="0" border="0">
        <TR>
            <TD height="5" background="img/menu_1.gif"></TD>
        </TR>
    </TABLE>

       <TABLE width="158" cellSpacing="0" cellPadding="0" border="0" background="img/menu_1.gif" height=70>
          <tr>
        <TD height="20"><img src="img/left_fold1.gif" alt="" border="0"> 程序设计:花香盈路</TD>
      </TR>
          <tr>
        <TD height="20"><img src="img/left_fold1.gif" alt="" border="0"> 官方主页:<a href="http:// target="top">
      </TR>
          <tr>
        <TD height="20"><img src="img/left_fold1.gif" alt="" border="0"> 当前版本:Ver7.6免费版</TD>
      </TR>
      <TR>
         <TD bgColor="#ffffff" height="1"></TD>
      </TR>
       </TABLE>
    </body>
</html>
<%elseif frame="main" then%>
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="inc/admin.css" type=text/css rel=stylesheet>
<META content="MSHTML 6.00.2800.1126" name=GENERATOR>
<TITLE>管理中心—首页</TITLE>
<script>if(top==self)top.location="admin.asp" </script>
</head><body>
<table width="98%" align="center" border="1" cellspacing="0" cellpadding="4" class=Hxcmsbk style="border-collapse: collapse">
  <tr class=Hxcmsss>
    <td align="center" colspan="2">欢迎『<%=Session("hxStudioAdminName")%>』来到花香盈路网站管理系统后台控制面板</td>
  </tr>
  <tr class=Hxcmsqs>
   <td align="right" width="10%">官方公告:</td>
   <td align="center" width="90%"><iframe scrolling="no" name="frampack" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="20" allowTransparency src="http://www.
  </tr>
  <tr>
    <td class="Hxcmsds" colspan="2">&nbsp;<a target="_blank" href="http://www.如果您发现<font color="#FF0000">BUG</font>,请点这里及时报告我们,以便我们为您及时解决。为了你使用程序更新方便,请不要删除此官方公告信息,谢谢!</a></td>
  </tr>
</table>
<BR>
<table width="98%" align="center" border="1" cellspacing="0" cellpadding="4" class=Hxcmsbk style="border-collapse: collapse">
  <tr>
    <td class=Hxcmsss align="center" colspan="2">
      快捷操作</td>
  </tr>
 <tr>
    <td width="50%" class="Hxcmsds">&nbsp;如果你是第一次使用,请不要忘了先 <input type="submit" name="Submit" value="更改网站资料" onclick="window.location.href='admin_config.asp'" class="button">,打造自己的网络家园,由此开始!</td>
  </tr>
  <tr>
    <td class="Hxcmsds"> &nbsp;首页统计出错?请按这里 <input type="submit" name="Submit" value="更新统计信息" onclick="window.location.href='admin_admin.asp?action=recount'" class="button"> ,要记的经常更新信息,以免统计出错!</td>
  </tr>
</table>
<br>
<table width="98%" align="center" border="1" cellspacing="0" cellpadding="4" class=Hxcmsbk style="border-collapse: collapse">
  <tr>
    <td class=Hxcmsss align="center" colspan="2">
      实用搜索</td>
  </tr> <form action="admin.asp?action=search" method="post" target="_blank">
 <tr>
    <td class="Hxcmsds">&nbsp;搜索关键字</td>
    <td class="Hxcmsds"><input name="word" type="text" id="word" class="lostfocus" gf="0" onmouseover='this.className="getfocus"' onmouseout='if (this.gf=="0") this.className="lostfocus"' onblur='this.className="lostfocus";this.gf="0"' onfocus='this.className="getfocus";this.gf="1"'></td>
  </tr>
  <tr>
    <td width="24%" class="Hxcmsds">&nbsp;常用搜索引擎</td>
    <td width="76%" class="Hxcmsds"><input name="search" type="radio" value="google" checked>
      Google&nbsp;&nbsp;<input type="radio" name="search" value="3721">3721&nbsp;&nbsp;<input type="radio" name="search" value="baidu">百度&nbsp;&nbsp;&nbsp;&nbsp;<input type="radio" name="search" value="sina">新浪</td>
  </tr>
  <tr>
    <td colspan="2" class="Hxcmsqs"><div align="center">
      <input type="submit" name="Submit" value="搜索" class="button">
    </div></td>
  </tr>
  </form>
</table>

</body>
</html>
<%end if
else
dim s
randomize timer
s=Int((89999)*Rnd +10000)%>
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="inc/admin.css" type=text/css rel=stylesheet>
<META content="MSHTML 6.00.2800.1126" name=GENERATOR>
<TITLE>管理中心—登录</TITLE>
<script language=javascript>
  function xxg()
  {
      if (document.form1.adminname.value==""){
          alert("请输入用户名?")
          document.form1.adminname.focus();
          return false
            }
      if (document.form1.adminpwd.value==""){
          alert("请输入密码?");
          document.form1.adminpwd.focus();
          return false
          }
          if (document.form1.CheckCode.value==""){
          alert("请输入验证码?");
          document.form1.CheckCode.focus();
          return false
          }
          return true
  }
  function reset_form()
  {
   document.form1.adminname.value="";
   document.form1.adminpwd.value="";
   document.form1.VerifyCode.value="";
   document.form1.adminname.focus;
  }
</script>
</HEAD>
<body onkeydown=return(!(event.keyCode==78&&event.ctrlKey)) leftMargin=0 topMargin=0>
<TABLE height=350 cellSpacing=0 cellPadding=0 width="100%" align=center border=0>
  <TBODY>
  <TR>
    <TD align=middle>
      <TABLE height=210 cellSpacing=0 cellPadding=0 width=307 align=center border=0>
        <form name="form1" method="post" action="admin.asp?action=adminlogin" onsubmit="return xxg()">
        <TBODY>
        <TR>
          <TD background="img/dt2.gif">
            <TABLE cellSpacing=0 cellPadding=0 width=300 border=0>
              <TBODY>
              <TR>
                <TD colSpan=2 height=50></TD></TR>
              <TR>
                <TD align=right width="35%" height=20><STRONG>用户名:</STRONG>
</TD>
                <TD width="65%" height=20><INPUT
                  style="BORDER-RIGHT: #004485 1px solid; BORDER-TOP: #004485 1px solid; FONT-SIZE: 10pt; BORDER-LEFT: #004485 1px solid; BORDER-BOTTOM: #004485 1px solid; BACKGROUND-COLOR: #d1ddeb"
                  maxLength=20 type="text" name="adminname" size="20" autocomplete="off"></TD></TR>
              <TR>
                <TD align=right height=20><STRONG>密 码:</STRONG></TD>
                <TD height=20><INPUT
                  style="BORDER-RIGHT: #004485 1px solid; BORDER-TOP: #004485 1px solid; FONT-SIZE: 10pt; BORDER-LEFT: #004485 1px solid; BORDER-BOTTOM: #004485 1px solid; BACKGROUND-COLOR: #d1ddeb"
                  type=password maxLength=20 name="adminpwd" size="20"></TD></TR>
              <TR>
                <TD align=right height=20><STRONG>认证码:</STRONG></TD>
                <TD height=20><INPUT
                  style="BORDER-RIGHT: #004485 1px solid; BORDER-TOP: #004485 1px solid; FONT-SIZE: 10pt; BORDER-LEFT: #004485 1px solid; BORDER-BOTTOM: #004485 1px solid; BACKGROUND-COLOR: #d1ddeb"
                  type="text" maxLength=20 name="s" autocomplete="off" size="12">&nbsp;<b><%=s%></b><input maxlength=20 name="s2" size=12 type=hidden value="<%=s%>"></TD></TR>
              <TR>
                <TD align=right height=10>&nbsp;</TD>
                <TD height=10></TD></TR>
              <TR align=middle>
                <TD colSpan=2 height=16>
                  <HR width=270 color=#0a4d99 noShade SIZE=1>
                </TD></TR>
              <TR vAlign=top align=middle>
                <TD colSpan=2 height=25><INPUT type=image height=15 width=38 src="img/bgoffice_1.gif" border=0 name=imageField> &nbsp; <IMG onmouseover="this.style.cursor='hand';" onclick="form1.adminname.value='';form1.adminpwd.value='';form1.s.value='';" height=15 src="img/bgoffice_2.gif" width=38 border=0></TD></TR></TBODY></TABLE></TD></TR></FORM></TBODY></TABLE>
</body></html>
<%end if%>

搜索更多相关主题的帖子: next include file 
2012-03-13 18:54
快速回复:登陆名称记忆
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025410 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved