Jump to content

Please help me with asp


Gesh

Recommended Posts

Helo! EveryoneCan you Please tell me what is wrong with this codeCode for Simple.asp<html><head><title<Gesh</title></head><%response.write(request.querystring("Fname"))response.write("" & request.querystring("Lname"))%></html>Code for Enter your name.html<form method="get" action="Simple.asp"><form><input type="text" name="Fname"><br><input type="text" name="Lname"><br><input type="Submit" name="submit" value="Submit><br></form>

Link to comment
Share on other sites

  • 2 weeks later...

Just a couple of things wrong as shown in red below:

  1. Take out the second opening <form> tag
  2. Add the missing closing quote to value="Submit"

<form method="get" action="Simple.asp"><form><input type="text" name="Fname"><br><input type="text" name="Lname"><br><input type="Submit" name="submit" value="Submit><br></form>

Link to comment
Share on other sites

Code for Simple.asp<html><head><title<Gesh</title></head><%response.write(request.querystring("Fname"))%></head></html>Code for Enter your name.html<form method="get" action="Simple.asp"><input type="text" name="Fname"><br><input type="text" name="Lname"><br><input type="Submit" name="submit" value="Submit"><br></form>Thank you for helping me Reg Edit !

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...