Results 1 to 3 of 3

Thread: HTML form get method

  1. #1
    Join Date
    Jan 2009
    Posts
    12

    HTML form get method

    If anyone who is know about HTML GET method please help me. I want to use the GET method to send a variable of data from one page to another? Can you provide me solution ?

    Thanks

  2. #2
    Join Date
    May 2008
    Posts
    90

    Re: HTML form get method

    This method is useful for form submissions where a user want to bookmark the result. HTML get Method is used to submit the data of the page as part of the URL. When the form data or query is submitted, the form data is appended to the url in "URL encoded" form.

  3. #3
    Join Date
    Oct 2008
    Posts
    77

    Re: HTML form get method

    The form-data can be sent as URL variables (with method="get") or as HTTP post (with method="post").

    Code:
    Code:
    <form action="form_abc.asp" method="get">
      Your Name: <input type="text" name="fname" /><br />
      State Name: <input type="text" name="lname" /><br />
      <input type="submit" value="Submit" />
    </form>

Similar Threads

  1. Replies: 5
    Last Post: 25-05-2011, 10:21 PM
  2. How to link html form to outlook
    By Mast Maula in forum Software Development
    Replies: 6
    Last Post: 11-01-2011, 01:39 PM
  3. How to use Get Method in ASP Form?
    By SKREECH in forum Software Development
    Replies: 4
    Last Post: 28-01-2010, 10:10 PM
  4. Make a form in HTML, CSS, PHP
    By Gyan Guru in forum Guides & Tutorials
    Replies: 1
    Last Post: 11-11-2008, 06:26 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,621,303.03168 seconds with 17 queries