Results 1 to 2 of 2

Thread: Easy one....

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Posts
    343

    Unhappy

    Hello,

    I have just started to use query strings and need to know the following

    I have a page with an inputbox called "email". I now want to send
    whatever was put in the inputbox(email) to my next page. My question is...
    how do I reference that inputbox...


    'This is my form - I want to send email to "test.asp"
    <form id="frmcheck" method="POST" action="test.asp">


    'This is my inputbox - "email"
    <input type="text" name="email" size="20">


    Thanks,

  2. #2
    Guest
    You have to place a button in your Form for submiting your values to test.asp
    Code:
    <FORM id="frmcheck" method="POST" action="test.asp"> 
    <INPUT type="text" name="email" size="20"> 
    <INPUT type="submit" value="Submit">
    </FORM>
    When your test.asp will be loaded you can get the email value with
    Code:
    ' VBScript
    Dim MyEmail ' As String
    MyEmail = Request ("email")

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width