Is it possible to read the data provided by an ObjectDataSource created in code behind? Take the following for instance:
ObjectDataSource myObjectDataSource= new ObjectDataSource();
myObjectDataSource.SelectParameters.Add(new SessionParameter("createdDate", TypeCode.String, "FilterCreated"));
How could you then get the rows from this? For example in a Dataset you would do something like:
foreach (DataRow dr in myDataset.Tables[0].Rows) {
string abc = dr["myColumn"];
}