Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
If you manually bind to a DataTable, I think the page will try to place the data table into the page's ViewState and recreate it when the page posts back. So, when the page posts back, you might end up with the bound DataTable being a different instance than the DataTable within the BO that is saved off in a session somewhere. You also might consider using an ObjectDataSource to bind the business object if you don't want to use the SF data binding.
|