我是 HTML 和 ASP 的初学者,我应该编写一个程序,当用户名和密码为 admin 并且用户单击按钮时,程序会打开一个新的 ASP 页面,否则程序会在表中显示无效的用户名或密码。
我写了这段代码,但是当我点击按钮时,程序总是显示新的 ASP 页面!我在记事本中写了这段代码。
<html>
<body>
<form method="post" action="Exam1.asp">
<table cellpadding="20" border="1" align="center" style="text-align:left;">
<colorgroup>
<col style="background-color:pink">
<col style="background-color:pink">
</colorgroup>
<tr>
<td>
<p>UserName:</p>
<p>Password:</p>
</td>
<td>
<input type="text" name="Username">
<br>
<br>
<input type="password" name="Password">
</td>
</tr>
<tr>
<td><input type="submit" value="Button"></td>
<td>
<%If Session("Username")="admin"&Session("Password")="admin" Then%>
<form method="post" action="Exam1.asp">
</form>
<%Else%>
Invalid username or password.
<%End If%>
</td>
</tr>
</table>
</form>
</body>
</html>
感谢帮助。干杯