开发者

Can you get UpdatePanel working with RichDataControls?

开发者 https://www.devze.com 2022-12-14 20:45 出处:网络
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

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">
0

精彩评论

暂无评论...
验证码 换一张
取 消