Link to home
Start Free TrialLog in
Avatar of little2do
little2do

asked on

Submit - Info

I would like to, when someone clicks the submit button, display the captured info on another page.
When i then go to that page i would like the latest submitted info to have been inserted below the previously submitted info.
Avatar of labambina
labambina

you can use asp and send input to a database
on the new page you can read them from the database using insert results

hope this helps

If you'd like more info on ASP you can check out http://www.learnasp.com

Your ISP will need to have NT servers for you to be able to use ASP.  Other options are available for server platforms.
Create a MSAccess table like this:
Table1 ( ID autonumber, info text, ...)

Use in the <form .. action=insert.asp>

insert.asp:

open
sql="insert into table1 (info1,.) values (..."
execute....

on the second page use another asp:

sql="select * from table1 order by 1"
open RS
while not RS.EOF do
 response.write info1 & "<br>"
Loop


ETC.
ASKER CERTIFIED SOLUTION
Avatar of labambina
labambina

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you don't need to know how to write asp if you are using Frontpage2000
you can just add a new database (access2000 very easily)
the send the form to this database
then display the results by doing insert results then picking a query or writing one from the same DB
Avatar of little2do

ASKER

Thanks everyone for your input.