hey everybody!

  • Thread starter Thread starter whatever
  • Start date Start date
whatever said:
i have compsed a page with some screen shots please tell me how i can
fit this.problem
all i want is to have the stupid thing sent to my email when someone
filles it out.
i have tryed just about every opeion there is.
all i want is plain text.
the pics for look at are at
http://www.1001megs.com/members/yadalda/pics.htm

What are you asing,whatever ?
This is your code:
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<!-- START HOME FREE HEADER CODE -->
<!-- END HOME FREE HEADER CODE -->
<p><img border="0" src="1.JPG" width="1024" height="768"><br>
<img border="0" src="2.JPG" width="1024" height="768"><br>
<img border="0" src="3.JPG" width="1024" height="768"></p>
<!-- START HOME FREE FOOTER CODE -->
<!-- END HOME FREE FOOTER CODE -->
</body>
</html>

No much of it, is there?

There is nothing to fill out and no code to send anything to email.

And 1.JPG, 2.JPG 3.JPG don't exist. You may mean: 1.jpg, 2.jpg 3.jpg

But in any case you can't send an image via email, only text.

Can you supply more info.?
 
The Frontpage form relies on three primary ingredients.

1. The FrontPage Server Extensions must be enabled on the server.

2. You must publish with FrontPage to http location. Don't use FTP as this
can break or corrupt the extensions.

3. Use of .htm or .html page extension.

Additionally, in order to send results to email, the SMTP (Simple Mail
Transport Protocol) must be set up on the server to send form mail.

As to this particular form code, the file results should go to
_private\form_results.csv As it stands now it is pointing to your D: drive.

You also don't have an email listed. For best results, use site mail e.g
(e-mail address removed) and then forward this to personal email if necessary.

When you see the "Disk based web message asking if you want to remove the
email, click no. Publish your form and if you have problems, let us know and
post the URL for the form page.

Mike Smith,

http://FrontPageForms.com
FrontPage Form Tutorials
& Form Script Examples
 
By reading your host site's plan description, it looks like you do not have
Frontpage extensions support, so FP's form handler will not work for you.
But, it looks like they do offer somekind of form handler, you'll have to
readup on exactly what they offer and how to use it on their site.


| <html>
|
| <head>
| <meta http-equiv="Content-Language" content="en-us">
| <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
| <meta name="ProgId" content="FrontPage.Editor.Document">
| <meta http-equiv="Content-Type" content="text/html;
| charset=windows-1252">
| <title>name&nbsp; Email&nbsp; comments</title>
| </head>
|
| <body>
|
| <form method="POST" action="--WEBBOT-SELF--">
| <!--webbot bot="SaveResults"
| u-file="D:\mysite\_private\form_results.csv" s-format="TEXT/CSV"
| s-label-fields="TRUE" --><blockquote>
| <blockquote>
| <blockquote>
| <blockquote>
| <p>name<br>
| <!--webbot bot="Validation" b-value-required="TRUE"
| i-minimum-length="1" i-maximum-length="28" --><input type="text"
| name="name" size="50" maxlength="28"><br>
| Email<br>
| <!--webbot bot="Validation" b-value-required="TRUE"
| i-minimum-length="7" i-maximum-length="28" --><input type="text"
| name="email" size="50" maxlength="28"><br>
| comments<br>
| <!--webbot bot="Validation" b-value-required="TRUE"
| i-minimum-length="1" i-maximum-length="5000" --><textarea rows="2"
| name="comments" cols="50"></textarea><br>
| <input type="submit" value="Submit" name="B1"><input
| type="reset" value="Reset" name="B2"></p>
| </blockquote>
| </blockquote>
| </blockquote>
| </blockquote>
| </form>
|
| </body>
|
| </html>
|
 
Back
Top