Jump to content

Form with a submit button


Guest EnzoIppoliti

Recommended Posts

Guest EnzoIppoliti

Hallo, I'm writing from Italy. I find this web site very good. I'm try to learn HTLM, but I've a problem now: I wrote in a "htlm" page (FrontPage Microsoft) the following code:<html><body><form name="input" action="html_form_action.asp" method="get">Type your first name: <input type="text" name="FirstName" value="Mickey" size="20"><br>Type your last name: <input type="text" name="LastName" value="Mouse" size="20"><br><input type="submit" value="Submit"></form> </body></html>..... but I have no goods results. If I click the "Submit" button, no input is sent to a new page called html_form_action.asp. Why???Thanks in advance,Enzo

Link to comment
Share on other sites

The input will be sent but are you retrieving it correctly? your code should look simliar to this on the html_form_action.asp?request.querysting("FirstName")request.querysting("LastName")After you press submit look at the address bar and you should see the name/value pairs.Please post the code for html_form_action.asp, with out it we have no idea whats happening :)

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...