>I have created a simple online survey (using a form) for a club. For[color=blue]
>several reasons we prefer to have the survey results transmitted via
>e-mail, to be analyzed by a person rather than a CGI script:
>
> <FORM ID="Club Survey" NAME="Club Survey"
>ACTION="mailto:email@host.com" METHOD="POST" ENCTYPE="text/plain">
>
>or the equivalent. Rather than simply leaving the form in the browser
>window after the user clicks the submit button:
>
> <INPUT NAME="Submit Button" TYPE="submit" VALUE="Send Survey" >
>
>we would like to have the browser automatically transfer to another page
>("Thank you for participating . . .").
>
>That is, in effect we want one button do two things:
>1) Submit the results (via e-mail).
>2) Transfer to a new page rather than leaving the form visible in the
>browser window.[/color]
<.form ... onsubmit="window.location.href='url_address'">
Check out this link though before you decide a server-side solution isn't the
way to go.
http://www.network23.com/hub/mailto/default.html
[color=blue]
>I admit that my knowledge of Javascript is pretty limited--but not
>completely zero. A few times I have been able to adapt scripts that are
>offered openly for general use on various web sites. But in this case I
>can't find any help.
>
>This seems like a natural thing people would want to do. But as far as
>I have been able to tell, I must be the first person who has ever
>thought of it. There is a choice of (probably) dozens of scripts that
>disable the "submit" button after the first click, but nothing at all
>that does what I describe above.[/color]
Javascript has been around for nine years. There are not that many ideas which
have not been attempted in Javascript, including disabling your computer. :)
Peace, Vm
Yaz
Providing complicated solutions to simple problems since 1997.