Serializable

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

Hello, When I attempt to store a dataview into a "viewState" variable, I get
some error message indicating that I need to "mark the dataview as
serializable". How do I do that?
 
DataSet is serializable, store it. DataView is a property of DataSet hence
not serializable. You can always get the DataView from the DataSet.
 
Back
Top