J
|
Jane 3/13/2007 |
Stealth, Sub AfterAdd() '** Insert a record into another table **** strSQLInsert = "insert into TableName (UserName, CurrentDate) values ('" & Session("UserID") & ", now())" dbConnection.Execute strSQLInsert End Sub
|
S
|
stealthwifi author 3/13/2007 |
Jane, Sub AfterAdd() '** Insert a record into another table **** strSQLInsert = "insert into TableName (UserName, CurrentDate) values ('" & Session("UserID") & "', now())" dbConnection.Execute strSQLInsert End Sub |