Hi
I am using ASPRunner 6.3 and have a quick question on the use of the 'Before record Added' coding standard.
I have a web page with three fields:
[b]Field Name
Archive Tick
Archive By
Archive Date
The 'Archive By' and 'Archive Dat'e fields are not visible to the user.When a user is adding a new record and ticks the 'Archive Tick' field I want the 'Archive by' to be autopopulated with the persons session id and the 'Archive Date' field to be autopopulated with todays date.
On the 'Before record Added' page I added the following:
if values("Archive Tick") = true then
values("Archive By")=session("displayname")
values("Archive Date")=date()
endif
But this does not appear to be working. Any ideas?
Thanks in advance
Brian