Hi,
The code is below, thanks.
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" DataObjectTypeName="WantWebsite.Shop"
DeleteMethod="Delete" InsertMethod="Insert" SelectMethod="GetAll" TypeName="WantWebsite.DataAccessLayer.Bases.ShopProviderBase"
UpdateMethod="Update">
</asp:ObjectDataSource>
<asp:DetailsView ID="DetailsView1" runat="server" AllowPaging="True"
AutoGenerateRows="true" DataSourceID="ObjectDataSource1" Height="50px" Width="125px">
I assume I shouldn't be binding the datasource to the WantWebsite.DataAccessLayer.Bases.ShopProviderBase class?
Jordan