温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

asp登陆页面的跳转功能

发布时间:2020-08-01 10:28:56 来源:网络 阅读:652 作者:王志临 栏目:编程语言

登录页面login.html

<form id="form1" name="form1" method="post" action="login.asp">
      <table width="400" height="60" border="0" bgcolor="#99CCFF">
        <tr>
          <td bgcolor="#99CCFF"><div align="right">用户名:</div></td>
          <th width="198" scope="col"><div align="left">
            <input name="name" type="text" id="name" />
          </div></th>
        </tr>
        <tr>
          <td><div align="right">密码:</div></td>
          <td><div align="left">
            <input name="pwd" type="password" id="pwd" />
          </div></td>
        </tr>
      </table>
        <p align="center">
          <input name="Submit" type="submit" value="登录" />
          &nbsp;&nbsp;
          <input name="Submit2" type="submit"  onclick="MM_goToURL('parent','regist.html');return document.MM_returnValue" value="注册" />
        </p>
    </form>

检查页面:login.asp

<%
name1=Trim(request("name"))
pwd=Trim(request("pwd"))
sql="select * from [users] where userID='"&name1&"' and mm='"&pwd&"'"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,3,2
if rs.recordcount<1 then
%>
<script language="vbscript">
alert("用户名或密码错误!")
history.back
</script>
<%  else

session("userid")=name1  %>
<script language=javascript>alert('欢迎登陆')</script>
<script language=javascript>window.location.href='shareinfo.asp'</script>
<%

end if

%>

结果去无法跳转。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI