Click here to Skip to main content
15,905,785 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI ALL,

CAN ANY ONE HELP ME HOW TO USE AJAX UPDATE PROGRESS BAR IN .NET 3.5.
MY REQUIRMENT IS ON CLICK OF BUTTON AN IMAGE IS DISPLAY AND TEXT "Loading..." WILL DISPLAY.
Posted
Updated 9-Jun-11 0:04am
v2
Comments
Smithers-Jones 9-Jun-11 6:08am    
Your caps-lock-key seems to be stuck.

code as follows :
<asp:updateprogress id="updprogress" runat="server">
        progresstemplate>
            <asp:image id="imgprogress" runat="server" imageurl="~/images/loading.gif" />
       progresstemplate>
   asp:updateprogress>
 
Share this answer
 
v3
Though the question has been marked as answered, yet I would like to share few knowldegebase articles with you.

Have a look at these samples to understand the implementation and working of Update Progress:
MSDN: UpdateProgress Control Overview[^]
CP: The UpdateProgress Control of ASP.NET AJAX Extensions[^]
AJAX.NET UpdateProgress control[^]
ASPNET Tutorial: Introduction to AJAX UpdateProgress Control in ASP.NET and C#[^]
 
Share this answer
 
Use this :

<asp:updateprogress id="updprogress" runat="server">
        progresstemplate>
            <asp:image id="imgprogress" runat="server" imageurl="~/images/loading.gif" />
       progresstemplate>
   asp:updateprogress>


By adding the image named as Loading.gif inside the Images Folder.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900