views:

253

answers:

1

I am having one requirement for locking the entire dataset. Is it possible to lock the ASP.net dataset that no further updates to dataset to be done.

+1  A: 

I don't think so, but you could always call the DataSet.RejectChanges Method

http://msdn.microsoft.com/en-us/library/system.data.dataset.rejectchanges.aspx

DrG