Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Has anyone modified the _edit page to insert database changes into an Audit table? If so, can you provide your methodology to me?thanks in advance
Hi,you can use something like this:
strSQL = "insert into Audit (Username, LoggedIn) values ('" & Session("UserID") & "', Now())"
This code inserts the name of logged user and a timestamp into Audit table.