Is it possible to lock an ASP.net dataset

I have one requirement to lock the entire dataset. Is it possible to lock the ASP.net dataset so that no further updates to the dataset take place.

+1


source to share


1 answer


I don't think so, but you can always call the method DataSet.RejectChanges



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

+1


source







All Articles