Reputation: 4856
is it possible? say with the listview?
Upvotes: 1
Views: 83
Reputation: 4856
This is the relevant part of code
<asp:UpdatePanel
ID="upComments" runat="server"
UpdateMode="Conditional" ChildrenAsTriggers="true">
<ContentTemplate>
<asp:ListView ID="lvComments" runat="server" DataSourceID="dsComments">
Upvotes: 0
Reputation: 51468
You need to set the ChildrenAsTriggers
attribute to true
in order for this work as you expect.
Upvotes: 1