Results 1 to 7 of 7

Thread: Does anyone know anything about...?

  1. #1
    Senior Member LIGHTNINGLORD67's Avatar
    Join Date
    Apr 2010
    Posts
    4,886
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    6
    Thanked in
    5 Posts

    Default Does anyone know anything about...?

    ...about HTML? For example, what code do you put in Notepad (for Windows) or Textedit (for macs) that would take you to a different page when you press enter in a comment box?

    The comment box code is: <input type="text" name=myText value="Leave Comment Here." size=25>

    Does anyone know what to put inside the brackets so that when you press enter, it takes you to a different page that says something like "Thank you for your comment!"??
    List of Insults! Found by me.
    THIS IS!!!!!!!.....sparta.

  2. #2
    Member LoonnooL's Avatar
    Join Date
    Nov 2010
    Posts
    51
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    you can't. you need a button or some other input control
    Looking for players from Singapore~

  3. #3
    Senior Member LIGHTNINGLORD67's Avatar
    Join Date
    Apr 2010
    Posts
    4,886
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    6
    Thanked in
    5 Posts

    Default

    Quote Originally Posted by LoonnooL View Post
    you can't. you need a button or some other input control
    So...you can. You just said it, but what kind of button or input control? If you know it or know anyone who knows it, tell them to tell me because I really need to know this
    List of Insults! Found by me.
    THIS IS!!!!!!!.....sparta.

  4. #4
    Senior Member TheLaw's Avatar
    Join Date
    Sep 2010
    Location
    Malaysia
    Posts
    1,719
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    check the web, it has everything.
    [FONT=garamond]I like Bears. Be jealous.

  5. #5
    Junior Member Anetrava's Avatar
    Join Date
    Dec 2010
    Posts
    22
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    I don't have a lot of time right now - working but here is some quick and dirty....obviously there are better ways but i'm not completely sure what you are trying to achieve or even what you are doing with the 'comments' that are submitted. I personally like asp .net and c#.
    comment.html page:
    <form id=form1 action="thankyou.html" method="get">
    <input type="text" name=myText value="Leave Comment Here." size=25>
    <input type="submit" name="submit1" value="Click Me">
    </form>

    thankyou.html page:
    <form id=form1>
    Thanks
    </form>

  6. #6
    Senior Member LIGHTNINGLORD67's Avatar
    Join Date
    Apr 2010
    Posts
    4,886
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    6
    Thanked in
    5 Posts

    Default

    Quote Originally Posted by Anetrava View Post
    I don't have a lot of time right now - working but here is some quick and dirty....obviously there are better ways but i'm not completely sure what you are trying to achieve or even what you are doing with the 'comments' that are submitted. I personally like asp .net and c#.
    comment.html page:
    <form id=form1 action="thankyou.html" method="get">
    <input type="text" name=myText value="Leave Comment Here." size=25>
    <input type="submit" name="submit1" value="Click Me">
    </form>

    thankyou.html page:
    <form id=form1>
    Thanks
    </form>
    OMG! Thank you thank you thank you thank you THANK YOU! IT WORKED! Thanks so much!!
    List of Insults! Found by me.
    THIS IS!!!!!!!.....sparta.

  7. #7
    Junior Member Anetrava's Avatar
    Join Date
    Dec 2010
    Posts
    22
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    You are welcome, glad I could help! If you need further help just shoot me the specifics and I'll do what I can.

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
  •