Looking for a way to use an autogenerated edit form and automatic operations but add properties such as logged in user and date and time for an insert or update. Is there a way to append items to what is being inserted using the grid's operations or is doing it on the data source the better option?
SelectCommand="Select * from Table"InsertCommand="insert into Table(AdminID,AdminName,Password,DateTime)values(@AdminID,@AdminName,@Password,@DateTime)"