做个网页,想弄个密码,求HTML(ASP)代码
想做个简单的网页,只要在打开时都要输入密码,然后自动跳到设定的一个网页。这个密码是设好的。只要一个密码,不用什么用户名等。...
想做个简单的网页,只要在打开时都要输入密码,然后自动跳到设定的一个网页。
这个密码是设好的。只要一个密码,不用什么用户名等。 展开
这个密码是设好的。只要一个密码,不用什么用户名等。 展开
2个回答
展开全部
<html>
<head>
<title>恶搞网页</title>
<script language="vbscript">
sub button1_onclick
r=inputbox("请输入网页访问密码","密码输入框")
if r = "123456" then
window.location.replace("http://www.baidu.com")
else
msgbox "密码错误" ,vbcritical + vbokonly + vbdefautbutton1, "错误"
end if
end sub
</script>
</head>
<body>
<form><input name="button1" type="button" value="点击输入密码"></form>
</body>
</html>
<head>
<title>恶搞网页</title>
<script language="vbscript">
sub button1_onclick
r=inputbox("请输入网页访问密码","密码输入框")
if r = "123456" then
window.location.replace("http://www.baidu.com")
else
msgbox "密码错误" ,vbcritical + vbokonly + vbdefautbutton1, "错误"
end if
end sub
</script>
</head>
<body>
<form><input name="button1" type="button" value="点击输入密码"></form>
</body>
</html>
展开全部
html+asp 来实现一下
密码是:123456
a1.asp和a2.html放在一个文件夹中
a1.asp文件名
<%
yu=request.from("yu")
pwd=request.from("pwd")
if yu="ok" then
if pwd="123456" then'这里设置密码
Response.Redirect("a2.html")
end if
end if
%>
<form method="post" action="a1.asp">
<input type="hidden" name="yu" value="ok">
<input type="text" name="pwd">
<input type="submit" value="提交">
</form>
a2.html 文件名
<html>
<body>
登陆进来了!!!!!!!!
</body>
</html>
密码是:123456
a1.asp和a2.html放在一个文件夹中
a1.asp文件名
<%
yu=request.from("yu")
pwd=request.from("pwd")
if yu="ok" then
if pwd="123456" then'这里设置密码
Response.Redirect("a2.html")
end if
end if
%>
<form method="post" action="a1.asp">
<input type="hidden" name="yu" value="ok">
<input type="text" name="pwd">
<input type="submit" value="提交">
</form>
a2.html 文件名
<html>
<body>
登陆进来了!!!!!!!!
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询