Any help will be appreciaded.

link|improve this question

68% accept rate
feedback

3 Answers

up vote 23 down vote accepted

You can use the Triggers property of the UpdatePanel to register actions that trigger a full postback.

Add a PostBackTrigger object to that property, containig the ControlID of the control which needs to trigger a full postback.

<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
    <ContentTemplate>
        ...
    </ContentTemplate>
    <Triggers>
        <asp:PostBackTrigger ControlID="myFullPostBackControlID" />
    </Triggers>
</asp:UpdatePanel>
link|improve this answer
feedback

From here:

Use the PostBackTrigger control to enable controls inside an UpdatePanel to cause a postback instead of performing an asynchronous postback.

 <Triggers>
    <asp:PostBackTrigger ControlID="controlID" />
 </Triggers>
link|improve this answer
1  
+1 - Too fast @Aseem! – thedugas Mar 30 '10 at 13:35
feedback

See link below

http://asimsajjad.blogspot.com/2009/04/calling-dopostback-function-for-aspnet.html

hope that will help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.