非常感谢lele2007的帮助!你的代码不是VB语言吗?但从我了解到的,有的是用以下代码?它是一种什么语言呢?思路和你基本一样,就是进入不了指定的网页,不知哪个地方出错呢?
<%
if session("login")<>""then
if request("name")<>""then
session("name")=request.form("name")
else
response.Write"<script>alert('请填写用户名!');window.location.href='index.asp'</script>"
end if
if request("password")<>""then
session("password")=request.form("password")
else
response.Write"<script>alert('请填写密码!');window.location.href='index.asp'</script>"
end if
if session("name")="tztj123" and session("password")="123456" then
Response.Redirect("188.asp")
else
response.Write"<script>alert('用户名或密码错误!');window.location.href='index.asp'</script>"
end if
end if
%>
<html xmlns="http://www.
<head>
<link href="style.css" type="text/css" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>文件上传</title>
</head>
<body>
<form name="form1" method="post" action="">
<table width="200" height="100" border="1" align="center" cellpadding="4" cellspacing="1" >
<tr class="header" align="center">
<td height="26" colspan="2"><center><strong>输入用户名和密码才能登陆</strong> </center></td>
</tr>
<tr >
<td> <p align="center">用户名:</td>
<td>
<input name="name" type="text" id="name" size="13"></p>
</td></tr>
<tr>
<td><p align="center">密 码</td>
<td><input name="password" type="password" id="password" size="13">
</p></td></tr>
<tr>
<td>
<input type="submit" name="Submit" value="登陆"></td>
<td> <input type="reset" name="Submit" value="取消">
<input type="hidden" name="login" value="form">
</td></tr>
</table>
</form>
</body>
</html>
[
本帖最后由 TZTJ 于 2010-1-17 21:59 编辑 ]