forms on an asp page

D

Draychir

When I do a form that sends the results to an e mail account it works fine. BUT, I added some database results to the form, so I had to rename it with an asp extension. Now it wont submit the info. Any help out there? Thanks
 
T

Tom Pepper Willett

Unfortunately, the forms to email feature must use a html page extension.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
===
| When I do a form that sends the results to an e mail account it works
fine. BUT, I added some database results to the form, so I had to rename it
with an asp extension. Now it wont submit the info. Any help out there?
Thanks
 
T

Thomas A. Rowe

You can mix ASP with functions that also use the server extensions. In this case it would be best to
learn to send email via ASP.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================


Draychir said:
When I do a form that sends the results to an e mail account it works fine. BUT, I added some
database results to the form, so I had to rename it with an asp extension. Now it wont submit the
info. Any help out there? Thanks
 
A

Andrew Murray

You can't have it both ways....submit to an email and to a database, only one or
the other.....

Submission to a database requires pages with ASP file extension but the form
handler (for sending email from a html form requires a normal html (or htm)
extension


Draychir said:
When I do a form that sends the results to an e mail account it works fine.
BUT, I added some database results to the form, so I had to rename it with an asp
extension. Now it wont submit the info. Any help out there? Thanks
 
Top