Click to See Complete Forum and Search --> : Creating a database


Adebayo
August 18th, 2000, 04:01 AM
Who can help me. I would like to have a foem on my web site so that a search can be made on a database stored in an html table. Also how can i update and subtract information from this database online using forms. an example of what I am talking about is the database searches on fligt agencies or car search database found on car dealer sites. I would like to be able to do this with html and javascript or with asp.

More detailed example is

a form asking for

name
surname
etc

when submitted

the datails is added to a html database table

and

another site will have a seach form
saying

search by

name
surname
etc


Thank you

soar
August 24th, 2000, 05:24 PM
Dim searchCriteria
searchCriteria = Request.form("Input_User_Name")
searchCriteria = Trim(searchCriteria)

'Do a database connection.
'Then, simply use sql statements for select, update, or delete.

select * from HTMLtable where DataBase_ColumnName = searchCriteria