Updatepanel gives full postback instead of asyncpostback
I have run into what seems to be a very famous problem: My updatepanel fires a full postback instead of a async postback. The normal solution is to give all controls you add dynamically an ID, which I have done, but I still get a full postback instead of my async postback... Here's the code: HTML: <asp:UpdatePanel ID="ItemsUpdatePanel" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="False"> <Triggers> </Triggers> <ContentTemplate> <asp:ListView ID="PlayerItems" runat="server" GroupItemCount="5" onitemdatabound="PlayerItems_ItemDataBound"> <LayoutTemplate> ... Listview stuff ... <