Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems linking ASP Pages 1

Status
Not open for further replies.

campbere

Technical User
Oct 10, 2000
146
US
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=&quot;Content-Type&quot; content=&quot;text/html&quot;>
</head>
<body>
<p>
</p>
<div align=&quot;center&quot;>
<h1> Welcome to the Version 1.0 </h1>
<p>Today is <% =WeekdayName(Weekday(Date)) & &quot; &quot; & MonthName(Month(Date)) & &quot; &quot; & Day(Date)%> </p>
<p>Eastern Standard Time is <% =Time%></p>
</div>
<hr>
<p></p>
<div align=&quot;center&quot;>
<form method=&quot;POST&quot; action=&quot;<table border=0>
<tr><p>
<td>User Id:</td>
<td><input name=&quot;userid&quot; type=&quot;TEXT&quot; size=&quot;14&quot; maxlength=&quot;20&quot; align=&quot;MIDDLE&quot;></td>
</tr></p>
<tr><p>
<td>Password:</td>
<td><input name=&quot;password&quot; type=&quot;TEXT&quot; size=&quot;14&quot; maxlength=&quot;20&quot; align=&quot;MIDDLE&quot;></td>
</tr></p>
</table>
<p> <input name=&quot;login&quot; type=&quot;BUTTON&quot; value=&quot;Log In&quot;>
<input name=&quot;reset&quot; type=&quot;RESET&quot; value=&quot;Clear&quot;>
</P>
</div>
<address>Copyright © 2001, First ASP<br>
URL: <a href=&quot;</body>
</html>
 
Hello,
Change
<input name=&quot;login&quot; type=&quot;BUTTON&quot; value=&quot;Log In&quot;>
to
<input name=&quot;login&quot; type=&quot;Submit&quot; value=&quot;Log In&quot;>
and try again.
D.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top