creating directory using forms

T

Tina

i am wondering if someone could tell me how i could set up
a form to create/add to an online business directory. i
want to be able to have people fill out a form with their
business info and then when they submit it it will publish
it to an existing webpage. i want this existing webpage to
be formatted with the graphic theme of the rest of my
site, not a blank white page.

i'm sure there's multiple ways to do this...wondering how
i would do it with frontpage? and if its not possible, if
anyone has any advice?
 
T

Thomas A. Rowe

Requires a server-side application, most likely custom written using ASP or whatever is supported by
the server that will be hosting the site. If you are hosted on a Windows IIS server, this may be
something that you can do using the FP database components.

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

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

Andrew Murray

Use the database results wizard.

Create a form with the fields you need your visitors to fill out.....rightclick
the form and in the send to part click "send to database" - it will then ask to
either connect to an existing access database or create a new one, choose 'create
new database'. it will do it's internal processes in connecting the
database....you can see the list of fields that it has, and frontpage includes
extra fields like 'timestamp' and user's IP or something like that.

If you don't want those fields you can add/delete whichever fields you like.
Then you go through the database results wizard and make the sql query to dispaly
whatever results you want, it includes a search form that the user can then
search on if need be.

You might want to take a look at www.frontpagewiz.com first if you're not
familiar with databases on the web, this site has an excellent tutorial.

Anyway, the results wizard generals a 'results area' that is just very basic, but
you can then jazz up with your own site's design as you see fit.

If you're not using a Windows Server with ASP and FP server extensions I suggest
www.ezscripting.co.uk for a simple solution using Perl/Cgi (free). These scripts
are simple to set up, they use a 'template' to display results and you can design
your results pages around the template/results. They have a help forum which the
site owner runs. A very good site for beginners using databases - the
database(s) used are flatfile (ascii text basically - character separated value
(CSV) files).
 
Top