I have the following line:
<asp:ObjectDataSource id="ObjectDataSource1" runat="server" SelectMethod="GetMembers" TypeName="ASP.controls_memberselection_ascx.MemberSelection">
I am trying to call a Getmembers function within the same usercontrol.
I checked out full name under the type:
this
.GetType().FullName = "ASP.controls_memberselection_ascx"
and the User Control is called memberSelection
so I tried all kinds of combinations. How do I find the exact name to use for the type name attribute in the objectdatasource control.
I had the type name pointing to a business object class and it worked so I know the actual function is error free.
any ideas?