submit button on a form

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default submit button on a form

    i am developing a new web page and i am creating a form which has 10 text fields aand i have set the action to mailto:eamil address but the form doesnt reset or submit form. can anyone help me please
    kenefick Guest

  2. Similar Questions and Discussions

    1. disable enter button to submit form
      I'm very new to ColdFusion - I'm building forms in Deamweaver, then using Cld fusion to pass he data to an Access Database. So far, so good. But...
    2. basic submit form button
      Hi, I am trying to create a very simple form with the submit button. I am fairly new creating forms contected to mysql. I would think that once...
    3. Help! Make submit button e-mail a form?
      Hey, I am trying to create a form so that when it is completed it can be sent to my e-mail, but I can't find the right code. Does anyone know how...
    4. Submit button on HTML form
      Not strictly a Macromedia - related question, but is there a way that I can get the target URL of a submit button on an HTML form to open in a new...
    5. Form Submit Button
      Should be a quickie but I just can't get it to work. I have a form where my users can submit their football picks, when they click submit I would...
  3. #2

    Default Re: submit button on a form

    Using a mailto option in a forms action is not a very good solution. I would
    check with your host for a form mail script to use.

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "kenefick" <webforumsuser@macromedia.com> wrote in message
    news:d1nphu$4nb$1@forums.macromedia.com...
    > i am developing a new web page and i am creating a form which has 10 text
    fields aand i have set the action to mailto:eamil address but the form
    doesnt reset or submit form. can anyone help me please


    Paul Whitham TMM Guest

  4. #3

    Default Re: submit button on a form HELP PLEASE

    <html>
    <head>
    <title>LOG IN</title></head>
    <body bgcolor="#FFFFFF" text="#000000">
    <form method=post action="edituser.asp">
    Username: <INPUT TYPE=TEXT NAME="username">
    <P>
    Password: <INPUT TYPE=PASSWORD NAME="password">
    <P>
    <INPUT TYPE=RESET> <input type=submit name="Sumbit" value="Sumbit">
    </form>
    </body>
    </html>



    Sharma1980n 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