One form, two "actions" - HTML or ASP?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Laura

    One form, two "actions" - HTML or ASP?

    Hello,

    I'm pretty sure that this can be done, but I am unable to find
    documentation on it.

    Presently I have a plain HTML survey form where users check multiple
    checkboxes, then submit. The results are sent via email to the
    administrator.

    What I also want to happen is a new confirmation page to open showing
    the user what he/she has submitted.

    So, essentially, I want:
    <form action="Confirm ation_page_with _all_checked_op tions.asp">
    AND
    <form action="mailto: administrator@a bc.com">

    I presently only have the 2nd one working, since it is more important
    for me to recieve the information at this point.

    Thank you, any help is appreciated!
    Laura
  • John

    #2
    Re: One form, two &quot;actions&q uot; - HTML or ASP?

    Hi,

    send the data to the asp page where you write your confirmation info. In the
    same page you send an email to the Adm using the CDONT. Check Google or
    www.aspFaq.com for more info about Cdont.


    Comment

    • John

      #3
      Re: One form, two &quot;actions&q uot; - HTML or ASP?




      Comment

      • Laura

        #4
        Re: One form, two &quot;actions&q uot; - HTML or ASP?

        Thank you!
        I think this will work!

        Laura


        *** Sent via Developersdex http://www.developersdex.com ***
        Don't just participate in USENET...get rewarded for it!

        Comment

        • Brian

          #5
          Re: One form, two &quot;actions&q uot; - HTML or ASP?

          Laura wrote:
          [color=blue]
          > Presently I have a plain HTML survey form where users check
          > multiple checkboxes, then submit. The results are sent via email
          > to the administrator.
          >
          > What I also want to happen is a new confirmation page to open
          > showing the user what he/she has submitted.[/color]

          Any good server side script can do that. I'd recommend TFmail, from
          NMS. It can generate an html page based on the submission, and mail
          the results to you.



          [color=blue]
          > <form action="Confirm ation_page_with _all_checked_op tions.asp"> AND
          > <form action="mailto: administrator@a bc.com">[/color]

          Unreliable. The action attribute must have an http url if you want to
          be sure it works.

          --
          Brian

          Comment

          Working...