Getting to the result that was returned when selecting in an ObjectDataSource
ASP.NET 2.0 has some really nice drag and drop features. Let's pretend you have a GridView and and ObjectDataSource that you have configured on the page. No you want to do something interesting with the results that the ObjectDataSource returns before it is passed on to the GridView. This could be any number of things. For example, maybe timezone conversion, rounding, etc.
The ObjectDataSource provides a Selected event that you can hook into. Here is an example that
protected
void BLL_Selected(object sender, ObjectDataSourceStatusEventArgs e)
{
DataTable dt = e.ReturnValue as DataTable;
// do interesting stuff here...
}
No comments:
Post a Comment