cree2me
09-29-2003, 05:27 PM
All the form buttons, text boxes, select options, etc. is in place. I can send the form to my e-mail address. The completed form comes out in a single line of text, ie
firstname=Martin
lastname=Loudour
address=139 Rockaberry
option=checked
How can I get the original form to be loaded to my e-mail address with the original form contents? As the users see it.
SDP2006
09-29-2003, 05:34 PM
You would have to use some kind of server-side form action most likely...
Hope this helps....
Did you include ENCTYPE="text/plain" in your opening form tag?
<FORM METHOD=POST ACTION="mailto:you@youraddress" ENCTYPE="text/plain">
cree2me
10-06-2003, 04:38 PM
Yes, I include <FORM ENCTYPE="text/plain" ACTION="mailto:myemail@home.ca"
METHOD="post" NAME="theform">
af11kcc
10-06-2003, 06:43 PM
I have done something similar using ASPEmail to submit the form sending it in HTML format...
cree2me
10-06-2003, 11:23 PM
My form is set-up in HTML format. What code do you use in ASP?
af11kcc
10-06-2003, 11:24 PM
You program using Visual Basic Script. Your server must have IIS installed in order to process ASP pages. Linux won't do...
PauletteB
10-07-2003, 09:32 PM
enctype="multipart/form-data"