Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Front Page forms data

Status
Not open for further replies.

LDaveM

Vendor
Feb 12, 2002
336
US
Need help here. I have a client who has a form and wants to collect the data then redisplay the data in a new page on his web site. Hosting company uses Unix, ASP, mySQL.. Client does not want to pay for Data base if it is not needed. Is there any way one can use Excel or othet tools to do this?
Thanks,
Dave
 
Yes, they support ASP Active Server Pages
 
Does not support Access. DSN?
Thanks
Dave
 
I do not know if FP ASP is supported by ChiliASP. That sounds like what they have on their UNIX server. You would be better off using PHP to create the connection.

A DSN is data source name. It is a type of connection to talk to a database.

FP will not create PHP though for you.

__________________________
Corey

 
You can actually have the form submit to a .csv file. If your client wants to view the data you can give him a link or link a web page to the .csv file. A .csv file is an Excel file. Its not pretty but its cheap and easy. You can save the .csv to a local drive and format it anyway you want or import it into an Access database.

If you want pretty then I would use the php/mySQL solution. A little more work but its free as well.

If you want more information about how to save data to a .csv file reply to this post and it will send me an e-mail.
 
kimmer,
Yes, I would like more info on how to do this.
Thanks,
Dave
 
Dave,

This is how you do it.

I am assuming that your site is created and published using FrontPage. I am also assuming that your development area has FP extensions on it.

Create your form with FrontPage.

Your probably going to want to keep the form results in the _private folder so...

Right mouse click on the form and choose Form Properties. In the Form Properties, under where to store results, in the Send To File Name: enter _private/filename.csv

Test the form in your browser and submit it. This should create the .csv file in your _private folder.

If you are working in a development area publish the form to your production area.

When you want to view the results either access the .csv file through FP on your production server or through a browser using the url to the file on your production server. You can save the .csv file to your computer and do what you want with it.


Hope this works.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top