Sign in | Join
Last post 08-31-2008 3:09 PM by anas. 1 replies.
Sort Posts: Oldest to newest Newest to oldest
I have an AJAX Confirmbuttonextender <tr><td><asp:LinkButton ID="lnkAcquire" runat="server" Font-Bold="True" OnClick="lnkAcquire_Click">Acquire</asp:LinkButton></td></tr> <ajax:ConfirmButtonExtender ID="ConfirmAcquire" runat="server" TargetControlID="lnkAcquire" ConfirmText = "Are you sure about acquiring this request?"> </ajax:ConfirmButtonExtender> When I click OK it goes to add ItemCreated event of a repeater inside the same .aspx instead of onclick of Link button. ANy help?
Make sure to bind the repeater inside IsPostBack Check ,
If Not IsPostBack
'' bind the repeater here
End If