Quote:
Originally Posted by Ron Howerton
Hmmmm...25 reads and no suggestions whatsoever. Guess it can't be done!
For those who want to know, I resolved this by retrieving a copy of the record to be updated prior to updating, and comparing column to column to identify changes. I'm surprised there isn't an easier way...
|
what you can do is
Code:
for each MyRow as DataRow in TestTable.Rows
if(MyRow.RowState=Modified)'do your part here to check
response.write(MyRow("TestColumn",OrinalVersion) = MyRow("TestColumn"))
end if
end if
next
the above code is written for understanding only. will not be compiled.