This topic is locked

Help in the action side

2/28/2009 5:21:48 PM
ASPRunnerPro General questions
M
mr. zx author

dears,
I want add Audit trail system like who edit the record oo who login by date and time.

i used this function : but is not working

'** Insert a record into another table ****

dal.edit.nameE=name

dal.edit.usermodify=userentered

dal.edit.Add()
can you help me in this function
Regards,

MR.ZX

R
Roger 2/28/2009

dears,

I want add Audit trail system like who edit the record oo who login by date and time.

i used this function : but is not working

'** Insert a record into another table ****

dal.edit.nameE=name

dal.edit.usermodify=userentered

dal.edit.Add()
can you help me in this function
Regards,

MR.ZX


Not sure about this, but I don't see enuff info regarding your table structure.
But what I think you are looking for is something like:
dal.TABLENAME.VALUE("FIELDNAME") = "some data value".
For example:
dal.MyTable.Value("IP_Address")=Request.ServerVariables("remote_addr")
I could be wrong, but this is code from one of my projects (of course I won't specify the tablename).
Hope it helps (I'm still new at this...)
Roger