I am having problems linking my pages together. I am running Personal Web Server on my Windows NT machine. I have a startup page default.html which welcomes the person to the testing area. I then have a link to from the default page to an ASP page called Login.asp. The code I wrote for the link is <a href=Login.asp>Start Here</a> and it works correctly. My Login.asp page displays correctly, but it is on this page when I try to click on the Log In button to launch the OracleConnection.asp page that nothing happens. I was able to directly paste localhost/OracleConnection.asp in the IE 5.0 address bar and the page does display. Can someone help explain what I am doing wrong? I am confused.
Here is the code from the Login.asp page:
<html>
<head>
<title>LOGIN Version 1.0</title>
<meta http-equiv="Content-Type" content="text/html">
</head>
<body>
<p>
</p>
<div align="center">
<h1> Welcome to the Version 1.0 </h1>
<p>Today is <% =WeekdayName(Weekday(Date)) & " " & MonthName(Month(Date)) & " " & Day(Date)%> </p>
<p>Eastern Standard Time is <% =Time%></p>
</div>
<hr>
<p></p>
<div align="center">
<form method="POST" action="<table border=0>
<tr><p>
<td>User Id:</td>
<td><input name="userid" type="TEXT" size="14" maxlength="20" align="MIDDLE"></td>
</tr></p>
<tr><p>
<td>Password:</td>
<td><input name="password" type="TEXT" size="14" maxlength="20" align="MIDDLE"></td>
</tr></p>
</table>
<p> <input name="login" type="BUTTON" value="Log In">
<input name="reset" type="RESET" value="Clear">
</P>
</div>
<address>Copyright © 2001, First ASP<br>
URL: <a href="</body>
</html>
Here is the code from the Login.asp page:
<html>
<head>
<title>LOGIN Version 1.0</title>
<meta http-equiv="Content-Type" content="text/html">
</head>
<body>
<p>
</p>
<div align="center">
<h1> Welcome to the Version 1.0 </h1>
<p>Today is <% =WeekdayName(Weekday(Date)) & " " & MonthName(Month(Date)) & " " & Day(Date)%> </p>
<p>Eastern Standard Time is <% =Time%></p>
</div>
<hr>
<p></p>
<div align="center">
<form method="POST" action="<table border=0>
<tr><p>
<td>User Id:</td>
<td><input name="userid" type="TEXT" size="14" maxlength="20" align="MIDDLE"></td>
</tr></p>
<tr><p>
<td>Password:</td>
<td><input name="password" type="TEXT" size="14" maxlength="20" align="MIDDLE"></td>
</tr></p>
</table>
<p> <input name="login" type="BUTTON" value="Log In">
<input name="reset" type="RESET" value="Clear">
</P>
</div>
<address>Copyright © 2001, First ASP<br>
URL: <a href="</body>
</html>