Thursday, August 30, 2012

ASP . NET Asynchronous Gridview Dropdown Button Reloading work



<body>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>

 <asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>

    <asp:UpdateProgress ID="UpdateProgress1"
    runat="server"
    AssociatedUpdatePanelID="UpdatePanel1">
    <ProgressTemplate>
        <asp:Label id="lblProgress"
            runat="server"
            Text="Loading....">
        </asp:Label>
    </ProgressTemplate>
</asp:UpdateProgress>


// Add your asp code here...


</ContentTemplate>
</asp:UpdatePanel>

</body>


No comments:

Post a Comment