Email Link To New Record |
5/10/2011 4:40:12 AM |
ASPRunnerPro General questions | |
M
MrDerp author
I am having difficulty implementing an event that will send the end-user an email with a direct link to a newly added record. I am using an Informix database with a primary key of "Serial" type i.e. it auto-increments when a new record is added.
|
|
P
|
Philip 5/10/2011 |
Try this: |
M
|
MrDerp author 5/10/2011 |
Try this: tmpDict("body")="A new record has been added. Please click the following link: http://website-url/Records.asp?editid1=" & values("id") Regards Philip
|
![]() |
Sergey Kornilov admin 5/10/2011 |
As manual says in AfterAdd event you can access the value of key column using keys("key column name"). |