I have a DataTable from a strongly-typed DataSet that has an event handler on the TableNewRow event (to initialize some date fields)
When I save this table into Session state, the event handler fires normally until the table's serialized. On subsequent requests when I retrieve the table from Session state, the event handler no longer fires.
Is this normal behavior, and I'm expected to rewire the event handlers on deserialize? If so, since there's no way to check whether the event handler has been added, what is the proper hook for doing the rewiring?