-----Original Message-----
Does anyone know how to email the results of a form to
include the form itself. That is to email the entire
filled in form as it appears prior to pressing the
submit button???
You would have write custom programming code in ASP or
ASP.NET.
I hesitate to post sample code because sending mail from
an ASP page requries the use of an ActiveX Control. Most
ISPs provide such a control, but many such controls are
available and each ISP installs the one that strikes
their fancy. Check your ISPs support page to see what's
available (and hopefully for sample code).
The ASP.NET classes for sending mail avoid the problems
thta caused so many ISPs to use non-Microsoft mail
objects, but nto everyone has ASP.NET available.
In general terms, you create an object, assign the from
address, to address, subject, message format, and body
content as properties, and then call a send method. The
emssage format can be HTML or Text, and if HTML the body
content should be a complete HTML page, from <html> to
</html> tag.
Warning: Mail programs have very uneven support for HTML
forms. This is because of possible security exploits
where someone mails you a form that autosubmits data back
to a Web site.
Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*