D
Dave T
On a button click, I want to get some data and bind it to a grid view using
an object data source:
<code>
Dim _DataSource As New ObjectDataSource
_DataSource.TypeName = GetType(BusinessFacade).ToString
_DataSource.SelectMethod = "GetAddresses"
</code>
the only thing is, the BusinessFacade object has a couple of properties I
want to set before calling the select method. How do I communicate with the
instance of BusinessFacade the object data source creates?
an object data source:
<code>
Dim _DataSource As New ObjectDataSource
_DataSource.TypeName = GetType(BusinessFacade).ToString
_DataSource.SelectMethod = "GetAddresses"
</code>
the only thing is, the BusinessFacade object has a couple of properties I
want to set before calling the select method. How do I communicate with the
instance of BusinessFacade the object data source creates?