Can you get UpdatePanel working with RichDataControls?
is it possible? say with the listv开发者_StackOverflow社区iew?
You need to set the ChildrenAsTriggers
attribute to true
in order for this work as you expect.
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">
精彩评论