I have a requirement to show Loading Image (Please Wait...) when user clicks on Finish Button in the Wizard (<asp:wizard>...</asp:wizard>) control in my asp.net page.
I Have a wizard like this
<asp:Wizard ID="w1" runat="server">
<WizardSteps>
<asp:WizardStep runat="server">
-----
-----
-----
</asp:WizardStep>
<asp:WizardStep runat="server">
-----
-----
-----
</asp:WizardStep>
</WizardSteps>
</asp:Wizard>
When i Click on Finish button in the last step of wizard Loading Image has to display so that user can wait for a while till it completes and
popup has to be displayed saying "Process Completed".
Please Help Me..
Thanks In Advance