SUBMIT button

SUBMIT button

am 20.08.2007 13:22:29 von hunkgym

Good Day!

Would be appreciate to know the method to check the destination data
will go to when press SEND or SUBMIT button on a form.

For instance, check or trace the EMAIL address where the data will be
sent to.

Thanks a million!

Re: SUBMIT button

am 20.08.2007 13:29:42 von rf

"hunkgym" wrote in message
news:1187608949.124565.46570@j4g2000prf.googlegroups.com...
> Good Day!

Er, G'Day.

> Would be appreciate to know the method to check the destination data
> will go to when press SEND or SUBMIT button on a form.
>
> For instance, check or trace the EMAIL address where the data will be
> sent to.

What?

You coded the form did you not. You should know the content of the action
attribute.

And what does an email address have to do with form submission?

--
Richard.

Re: SUBMIT button

am 20.08.2007 17:12:43 von William Gill

> You coded the form did you not. You should know the content of the action
> attribute.
>
> And what does an email address have to do with form submission?
Actually, the action attribute is usually a server side script or CGI
program that processes the submitted form data. I suspect the OP has an
email field on the form and is asking about some sort of validation,
which must be done client side via something like javascript, or in the
aforementioned server side script/program. I also suspect that these
are beyond the scope of this newsgroup.

OP, Try searching for form validation.