I want to disable image button when it got clicked and enable when post back complete.
<asp:ImageButton ID="btnNext" runat="server" ImageUrl="../Images/proceed.png" onclick="btnNext_Click"
OnClientClick="this.disabled = true;" UseSubmitBehavior="false" />
Is above method will solve this or i have to try different approach.
Thanks.
Go to the complete details ...