开发者

two updatePanels

开发者 https://www.devze.com 2023-03-21 11:29 出处:网络
Ive got two update panels on my site. Each one has got repeaters. Is it possible to refresh only one of them without need to rebind repeaters inside the other ? thanks for any help

Ive got two update panels on my site. Each one has got repeaters. Is it possible to refresh only one of them without need to rebind repeaters inside the other ? thanks for any help

There is One updatePanel:

<UpdatePanel runat="server" id ="upd1" UpdateMode = "condicional'>
<ContentTemplate>
     <repeater>
</Contentemplate>
</updatePanel>

<updatePanel runat="server" id="ipd2" >
<COntentTemplate>
    <LinkButton>
</ContentTemplate>
</UpdatePanel>

When I click on link button both updatepanels are updated :(

OK the UpdatePanel 开发者_如何学运维wasnt updated but it was because of javascript. I need to run that javascipt in order to apply jquery carousele to the repeater in first div. Is it possible keep functionality of the carousel without invoking js code when second updatePanel is updated ?


Set the UpdateMode for the UpdatePanel to Conditional and set up appropriate triggers that should cause updates.


Set UpdateMode="Conditional" and when you want to update Call UpdatePanel1.Update(); to update specific updatepanel

 <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> 
        <asp:Repeater runat="server" ID="rptContents">
    </asp:UpdatePanel>


Set the update Mode of the Inner Update panel to Conditional. Inner update panels are automatically updated by the outer update panels.

0

精彩评论

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

关注公众号