DataTable Events in ASP.NET?
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
-
My Question is how can we access DataTable events inside a Dataset in ASP.NET because I can't access the Partial Class for writing logic for RowChanging or RowChanged events. Thanks in advance !
AliAmjad First make it Run THEN make it Run Fast!
You can access the DataTable as a property of the DataSet and then refer to the events from there so you should be able to subscribe to the event
dataset.Tables[0].RowChanged
It definitely isn't definatley
-
You can access the DataTable as a property of the DataSet and then refer to the events from there so you should be able to subscribe to the event
dataset.Tables[0].RowChanged
It definitely isn't definatley