"Martin Mrazek" <> wrote in message
news: om...
> Hi,
> I construct HTML including several forms. Together there are about
> 2.500 values to be filled by client on that page. I need to have
> button there which generates e-mail from those values and sends it to
> our address. Do I understand well JS is not capable to do it? What to
> use instead for generating mail? ActiveX?
>
Why do you want to send them as mail from the client?
Usually, you store each form's data on the server after
the user submit it, and before you show the next form.
When the user have submitted all the forms, you have all his data
stored on your server already (in a db, file, or whatever).
Now, you can either extract the data directly from storage, or
have the last submit start a serverside script to gather it up
and send it as mail from your server.
--
Dag.
|