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

  1. #1

    Default Simple Web Form

    not sure how to properly title this question, but here is what i am trying
    accomplish and would like some direction in obtaining info on how to achieve
    this:

    i need to create a website for my helpdesk that has several text fields, i.e.
    name, address, computer name, etc.

    i would like to make it so that certain fields are mandatory, and then there
    would be a 'submit' option at the bottom, and when they hit submit a seperate
    window (or same window) displays the combined information that can be readily
    copied and pasted into our lazy trouble ticket system.

    anyone help me out?

    vaderc Guest

  2. Similar Questions and Discussions

    1. Simple Form
      Hi guy's, I am completely new to ColdFusion. I have created a mini-site (www.wealthmasterylive.co.uk). I have a form in it that has the...
    2. Simple Form Question...
      I have created a form that sits nicely in an email, so that when you get the email you can fill out the form and submit it.... Problem though! ...
    3. Simple Login Form
      hi i am using vs.net with csharp - i am trying to create a simple log in form user id password on submit i run a param query to check if the...
    4. Simple Form Problem!
      Hi, I am using a simple form 2 email program. I ama experienced programmer, But I feel very bad, as I am unable to fix this problem. All seems...
    5. A simple problem with a really simple form
      Hi there, I'm having a problem with designing a very small form in Dreamweaver. Its just a login form with username and password textfields - the...
  3. #2

    Default Re: Simple Web Form

    There are two basic ways to process form data -

    1. Use mailto:name@domain.com as the action of the form
    2. Use a server-side scripting method to a) harvest the form's data, b)
    process it in some manner, e.g., enter it into a database, c) formulate and
    send an email to one or more email recipients, and d) redirect the visitor
    to some ending page

    Method 1 is quite simple, and is also the least reliable. It depends both
    on your visitor having an email client already installed on their computer -
    this eliminates public computers, or home users without email clients
    installed (more and more it seems) - and on the installed email client
    responding to
    the mailto call. It is not possible to use this method *and* send the
    visitor to a
    thank you page as well.

    Method 2 is the preferred method, since it eliminates the problems of method
    1, but it means that you have to grapple with server-scripting somehow (ASP,
    CF, PHP, perl, etc.).

    It sounds like you need to use method 2 for this. What server models does
    your host server support?

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "vaderc" <webforumsuser@macromedia.com> wrote in message
    news:dcmcbs$qg9$1@forums.macromedia.com...
    > not sure how to properly title this question, but here is what i am trying
    > accomplish and would like some direction in obtaining info on how to
    > achieve
    > this:
    >
    > i need to create a website for my helpdesk that has several text fields,
    > i.e.
    > name, address, computer name, etc.
    >
    > i would like to make it so that certain fields are mandatory, and then
    > there
    > would be a 'submit' option at the bottom, and when they hit submit a
    > seperate
    > window (or same window) displays the combined information that can be
    > readily
    > copied and pasted into our lazy trouble ticket system.
    >
    > anyone help me out?
    >

    Murray *TMM* Guest

  4. #3

    Default Re: Simple Web Form

    Murray thanks for the assistance.
    That's pretty much what I was thinking, I have come across the mailto options
    and it doesn't really fit my needs, since we won't need any email
    confirmations, but merely only just a summary of data that can be copied.

    Method 2 is what sounds like I will have to do, maybe through the use of CGI
    on the server side from what I have read.
    I use dot5 hosting and they should allow everything, php, perl, etc...,. i
    hope that's what you mean.

    I came across a website that allows you to build demo forms and I was able to
    generate one that I would like to use, see if you can view it here:
    [url]http://www.form-builder-pro.com/builder/users/77180a5c6f11c4c6842bd0c06e9c1d7e42[/url]
    ef020c15fb7/HD-Test_FeedbackFormPage.html

    When you click Process it takes you to a summary page however it's hooked to
    their server and I don't know how I could make it local, i've tried opening the
    html in dreamweaver to adjust the properties but I may not be proficient enough
    in html to accomplish this unfortunately.

    vaderc Guest

  5. #4

    Default Re: Simple Web Form

    What you are describing is simple to do with server scripting. The form
    gets submitted to a page that simply redisplays the forms data.

    In ASP, you would just use successive Request commands to write the form
    data to the page. DW is ideal for allowing you to do this....

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "vaderc" <webforumsuser@macromedia.com> wrote in message
    news:dco335$cm7$1@forums.macromedia.com...
    > Murray thanks for the assistance.
    > That's pretty much what I was thinking, I have come across the mailto
    > options
    > and it doesn't really fit my needs, since we won't need any email
    > confirmations, but merely only just a summary of data that can be copied.
    >
    > Method 2 is what sounds like I will have to do, maybe through the use of
    > CGI
    > on the server side from what I have read.
    > I use dot5 hosting and they should allow everything, php, perl, etc...,. i
    > hope that's what you mean.
    >
    > I came across a website that allows you to build demo forms and I was able
    > to
    > generate one that I would like to use, see if you can view it here:
    > [url]http://www.form-builder-pro.com/builder/users/77180a5c6f11c4c6842bd0c06e9c1d7e42[/url]
    > ef020c15fb7/HD-Test_FeedbackFormPage.html
    >
    > When you click Process it takes you to a summary page however it's hooked
    > to
    > their server and I don't know how I could make it local, i've tried
    > opening the
    > html in dreamweaver to adjust the properties but I may not be proficient
    > enough
    > in html to accomplish this unfortunately.
    >

    Murray *TMM* 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