where does Form data go when 'Submit' is hit?

  • Thread starter Thread starter Fred Exley
  • Start date Start date
F

Fred Exley

I presume when form data is entered by a user and the 'Submit' button is
clicked, the data goes somewhere on the server side. Any pointers to where
I go from here to capture that data? Thanks in advance. -Fred
 
Check the _private folder or under Form Properties.

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

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
You essentially are supposed to tell it where to send the data.

in the form properties, you tell it to process the data either
1) to an email 2) text (CSV) file 3) a database 4) process by external
script (perl/cgi, asp, php etc).

It doesn't just "go somewhere" without your interaction to tell it where to
go.
 
Hey Fred,
Good question,.
Once submitted the form data goes to server side where it connects to
another script such as CGI,PHP,ASP usually to get data or input data
into a database of somesort.

You might find some useful help at this link to FREE video tutorials at
http://www.powerpages.ca
 
Andrew Murray said:
You essentially are supposed to tell it where to send the data.

in the form properties, you tell it to process the data either
1) to an email 2) text (CSV) file 3) a database 4) process by external
script (perl/cgi, asp, php etc).

It doesn't just "go somewhere" without your interaction to tell it where
to go.


thanks, much -that's just what I needed. -Fred
 
Back
Top