Click here to Skip to main content
15,892,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi,
can i access ddlUrgency control that is inside a tabpanel in .aspx. I want to access it form a another trigger that is outside to it.

Can i do it in aspx page.something like <asp:AsyncPostBackTrigger ControlID="pnlHeaderddl.Urgency" />

here is the code...

<asp:Panel ID="pnlHeader" runat="server">
<asp:UpdatePanel ID="UpUrgency" runat="server" >
<ContentTemplate>
<asp:DropDownList ID="ddlUrgency" runat="server" AutoPostBack="True" Width="100%"
CssClass="dropdown" OnSelectedIndexChanged="ddlUrgency_SelectedIndexChanged" />
</ContentTemplate>
</asp:UpdatePanel>



XML
<asp:UpdatePanel ID="UpPriority" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
         <asp:Button ID="lnkEs" runat="server" Text="Approve" OnClick="lnkEscalate_Click" OnClientClick="return confirmation();" />
    </ContentTemplate>
    <Triggers>
        <asp:AsyncPostBackTrigger ControlID="ddlUrgency" />
    </Triggers>
</asp:UpdatePanel


thanks,
Rahul
Posted

1 solution

You can trigger asynchronous postbacks only from the controls that are present in the update panel. Although, you can call Update method on another update panel from the event handler to refresh the HTML.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900