Are you talking about adding a row to a HTML table, or a row to a database?
If the former, then ask on a client-side DHTML list
If the latter, then you need to submit the form (RDS excluded).
strSQL = "INSERT INTO table1 "
strSQL = strSQL & "(field1) "
strSQL = strSQL & "VALUES('somevalue')"
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open Application("strDBConnectionString")
objConn.execute(strSQL)
objConn.Close
Set objConn = nothing
HTH
Cheers
Ken
----- Original Message -----
From: <JonGrman
To: "ASP Databases" <asp_databases@p...>
Sent: Tuesday, August 29, 2000 6:47 AM
Subject: [asp_databases] adding a row in a table
> im trying to add a row into a table on the click of a button...so that
when
> you click it you add a new phase or row into the table
>
> if someone has an example of that or could steer me in the right direction
> that would be a great help
> thanx
> email me back at jongrman21@a...
>