... i ask this mainly because when i try to use the update panel, it does not work, i've tried placing it in itemTemplate and editTemplate and both (even tho doing this would mean having to call the whole page), however i was running out of options because when i tried to place it inside the LayoutTemplate (where it makes sense to place it) it did not work once again, the updatePanel & listViiew begins like this...
{arrow}asp:UpdatePanel ID="upComments" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true"{arrow}
{arrow}ContentTemplate{arrow}
{arrow}asp:ListView ID="lvComments" runat="server" DataSourceID="dsComments"{arrow}
any ideas? this is now happening on two different aspx pages with different listviews and different datasources. idealy, i would prefer to minimize the ajax updated area as much as possible, preferably to itemTemplate level, but i'd even settle for the entire listView at the moment. thanks guys.
also, insertTemplate shows by default when page is loaded, and when i insert a new item, the entire page doesn't reload (like in other cases), the item is just added, not sure if this is a listView feature or the updatePanel in the works. when i press {edit} it reloads the page, and when i press update to update the item being edited, it also reloads the entire page. anyone?