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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP pages not executing instead asking to dwnl

Status
Not open for further replies.

ufobaby

MIS
Sep 25, 2001
238
0
0
US
hi all experts,

am complete newbie to ASP have just installed PWS and trying to run my first sample ASP code. but the moment it accesses the page it prompts for downloading the file. So i tried using "localhost\filename.asp" now it says page not found.
When i just type " the default.asp page is properly displayed.

Both the files are in c:\inetpub\ have also uninstalled the Frontpage server extentions.

Please Help..........

The Code ->
'--------- File firstasp.html-------
<html>
<head>
<title>My first ASP</title>
</head>
<body>
<form method=&quot;POST&quot; action=&quot;localhost\nextpage.asp&quot;>
<BR> UserName: <input name=&quot;username&quot; type=&quot;text&quot; size=&quot;30&quot;>
<BR> <input type=&quot;submit&quot; value=&quot;GO!&quot;>
</form>
</body>
</html>
'----------- File nextpage.asp --------
<html>
<head><title>Next Page</title>
<Body>
<%
Username = Request.Form(&quot;username&quot;)
%>
Your Username is <%=username%> !
</body>
</html>

Regards
Niraj [noevil]
 
I'm not sure if this is your problem but I don't think you need &quot;localhost&quot; in this line:

<form method=&quot;POST&quot; action=&quot;localhost\nextpage.asp&quot;>

Just change it to:

<form method=&quot;POST&quot; action=&quot;nextpage.asp&quot;>

If that works let me know.
 
You problem is that you were using a backslash in the form URL that is why you go the file not found error
<form method=&quot;POST&quot; action=&quot;localhost\nextpage.asp&quot;>
should be
<form method=&quot;POST&quot; action=&quot;localhost/nextpage.asp&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top