Submit Button won't work

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Submit Button won't work

    I need some help. I put a form on my page in Dreamweaver 8 and my submit
    button is not sending the data back to my email address. Is there particular
    settings I need to have this done. Can anyone help me?

    vwilliams2000 Guest

  2. Similar Questions and Discussions

    1. Submit button doesn't work to send form to my email
      Hello folks, I used MS Publisher to put together my very first web page (my first mistake). My business web page was looking pretty good, so I...
    2. Forms - submit button doesn't work right when windows users reply to mac-generated form
      I created a form with a button to automatically return the form to me. The return function works on my mac computers but when I send it to windows...
    3. [PHP] using submit button and PHP-HELP
      thanx for your help, Ive got flu and all these small things seem to be escaping my eyes. I just want to ask you a small question: If i want this...
    4. value submit button
      You can get the button value use code below: <?php echo $_POST;?> <form method="post"> <input type="submit" name="submit" value="submit1">...
    5. Submit button dosnt work
      I am coming into this conversation a little late, but instead of asking the same question again.. I thought replying would work. I am having the...
  3. #2

    Default Re: Submit Button won't work

    post your code so we can see what is wrong with it
    jeremyluby Guest

  4. #3

    Default Re: Submit Button won't work

    Here is my code for my form. It is a really basic form, I just don't know why
    the submit button won't send to my email.

    <form action="email to:customerservice@hhc2000.com"
    enctype="application/x-www-form-urlencoded" name="form1" target="_parent"
    id="form1"
    onsubmit="MM_validateForm('QName','','R','Qemail', '','NisEmail','Qaddress','','R
    ');return document.MM_returnValue">
    <div align="center">
    <h5><span class="style49">Name<br />
    <input name="QName" type="text" id="QName" accesskey="N" />
    Address
    <textarea name="Qaddress" id="Qaddress" accesskey="A"></textarea>
    <br />
    Email<br />
    <input name="Qemail" type="text" id="Qemail" />
    <br />
    Question </span>
    <textarea name="Qquestion" id="Qquestion"
    accesskey="Q"></textarea>
    <br />
    <input name="Reset" type="reset" id="Reset" value="Reset" />
    <input type="submit" name="Submit" value="Submit" />
    <label> </label>
    </h5>
    </div>
    </form>

    vwilliams2000 Guest

  5. #4

    Default Re: Submit Button won't work

    change form action="email to:customerservice@hhc2000.com

    to

    form action="mailto:customerservice@hhc2000.com
    jeremyluby Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139