Hi All,
I have update panel in my page and it contain PDf Export button . the code is as follows.
<asp:UpdatePanel ID="pnlData" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<ul class="share-inner-wrp">
<li class="PDF button-wrap" title="Print PDF"><a id="linkPdf" href="#" onclick="__doPostBack('btnpdf_Click', '');" runat="server">PDF</a></li>
</ul>
</ContentTemplate>
<Triggers >
<asp:AsyncPostBackTrigger ControlID="linkPdf"/>
</Triggers>
</asp:UpdatePanel>
javascript code for progress bar
<script type="text/javascript"& ...
Go to the complete details ...