i made a simple asp page, default.aspx. I saved it to localhost and ran it, i got the error "Server Application Unavailable"
I changed the extention to .asp, and it ran, but the script didnt work.
here is the script:
asp Code:
<head> <title>Test Page</title> </head> <body> <form id="form1" method='post'> <div> <input type="text" name="myname" /> <input type="submit" name="submit" value="Submit" /> </div> </form> <% Dim myname myname = Request.Form("myname") Response.Write("Hello " & myname) %> </body> </html>




Reply With Quote