代码高手请进!好的再追高分!
发布网友
发布时间:2024-10-24 18:02
我来回答
共1个回答
热心网友
时间:2024-10-25 04:34
静态的也可以实现这个功能,不用ASP也可以。
1。不把你的首页设为index.htm或index.html 就是不要设服务器默认的首页。
2.新建一个index.htm 的网页,代码如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
<!--//
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.id.value=="设置用户名") {
if (form.pass.value=="设置密码") {
location="untitled-2.html" // 设置你个人主页的首页文件。
} else {
alert("密码不正确")
}
} else { alert("账号不正确")
}
}
//-->
</script>
</head>
<body>
<form name="login">
<table width="500" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="147" align="center">身份验证</td>
</tr>
<tr>
<td>名称:
<input name="id" type="text" id="id" size="15" />
密码:
<input name="pass" type="password" id="pass" size="15" />
<label>
<input type="button" value="登陆" onclick="pasuser(this.form)" />
</label> <label>
<input type="reset" name="button2" id="button2" value="重置" />
</label></td>
</tr>
</table>
</form>
</body>
</html>
3.第二步的index.htm设置好后到http://tool.chinaz.com/Tools/ScriptEncode.aspx 把代码加密。然后再保存为index.htm就可以了。
不明白发邮件。wei_fong@126.com