J
|
Jane 7/9/2007 |
Hi, str = "select FieldName1, FieldName2, FieldName3 from TableName where INCIDENT_NO=" & incident_no Set rsTemp = server.CreateObject("ADODB.Recordset") rsTemp.open str, dbConnection 'send email here 'rsTemp is the collection with all entered values rsTemp.Close : set rsTemp = Nothing
|
C
|
chris author 7/9/2007 |
Hi, sure you can use AfterAdd event to send email to the user. To select all entered information from the database in the AfterAdd event use this code: where incident_no is the variable where ID of added record is stored.
|
J
|
Jane 7/9/2007 |
Chris, |