Like the title says, i would like to bind data from my usercontrol to my page's EntityDataSource. I tried this:in my user control:\[code\]<asp:Textbox runat="server" id="mytxtbox" Text='<%# Bind("myField") %>\[/code\]In my asp page:\[code\]<% Register TagPrefix="uc" TagName="myControl" src="http://stackoverflow.com/questions/12604432/~/MyControl.ascx" %>...<asp:EntityDataSource ID="EDS" runat="server" ....></asp:EntityDataSource<asp:FormView id="FormView1" runat="server" DataKeyNames="id" DataSourceId="EDS"> <EditItemTemplate> <uc:myControl runat="server" id="customControl"/> ... <asp:LinkButton ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update" Text="Update" /> <asp:LinkButton ID="UpdateCancelButton" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancel" /> </EditItemTemplate> <InsertItemTemplate> <uc:myControl runat="server" id="customControl"/> ... <asp:LinkButton ID="InsertButton" runat="server" CausesValidation="True" CommandName="Insert" Text="Insert" /> <asp:LinkButton ID="InsertCancelButton" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancel" /> </InsertItemTemplate> <ItemTemplate> <uc:myControl runat="server" id="customControl"/> ... <asp:LinkButton ID="EditButton" runat="server" CausesValidation="False" CommandName="Edit" Text="Edit" /> <asp:LinkButton ID="DeleteButton" runat="server" CausesValidation="False" CommandName="Delete" Text="Delete"/> </ItemTemplate></asp:formview>\[/code\]Using this method, i was able to display my user control's fields properly (with the appropriate content from by database), but i cannot insert/Update data.