How do I add a timestamp to a gridview that shows the last time a row was edited? I\'ve been searching Google but haven\'t found anything helpful yet.
I tried to create
I think you can handle this on the database side. Since it is a data bound gridview, you just need a datetime field with default value of NOW() for MySql. for SQL Server, I believe a persistent computed column with datetime.now() would do.
NOW()
datetime.now()