---
title: "Ajax Toolkit Update Progress Control in ASP.Net"  
description: "With an Update Progress control, you can show the status during  the partial-page rendering of an UpdatePanel.  Syntax:aspUpdateProgressID=\"UpdateProg"  
author: "Anonymous User"  
published: 2010-12-02  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/286/ajax-toolkit-update-progress-control-in-asp-dot-net  
category: "ajax"  
tags: ["ajax"]  
reading_time: 1 minute  

---

# Ajax Toolkit Update Progress Control in ASP.Net

With an Update Progress control, you can show the status during the partial-page rendering of an UpdatePanel.\

##### Syntax:

<asp:UpdateProgress ID="UpdateProgress1" runat="server">

</asp:UpdateProgress>

##### Code:

##### Write these codes on aspx page

```
<%-- ScriptManager control manages client script for AJAX enabled ASP.NET pages--%><asp:ScriptManager ID="ScriptManager1" runat="server" /><asp:UpdateProgress runat="server" id="PageUpdateProgress"><%--ProgressTemplate
Property  sets the template that defines the content of the
UpdateProgress control.--%>         <ProgressTemplate>                Loading...</ProgressTemplate></asp:UpdateProgress><asp:UpdatePanel runat="server" id="Panel"><%--You need to place content
of the page that you want to be in the UpdatePanel inside this--%><ContentTemplate><asp:Button runat="server" id="UpdateButton" onclick="UpdateButton_Click" text="Update
Time" /><asp:Label ID="Label1" runat="server"></asp:Label></ContentTemplate></asp:UpdatePanel> Write these code on button clickprotected void UpdateButton_Click(object sender, EventArgs e){        System.Threading.Thread.Sleep(3000);        Label1.Text = DateTime.Now.ToString();}
```

Run the Project

When you click Update Time button then it shows the status during the partial-page rendering of an UpdatePanel. \

![AjaxControl Toolkit UpdateProgress Control in ASP.Net](https://www.mindstick.com/mindstickarticle/55813e1c-8f3a-46ad-8469-60857607da2c/images/2a439603-1931-4583-9e08-129f3c32eaf7.png)

![AjaxControl Toolkit UpdateProgress Control in ASP.Net](https://www.mindstick.com/mindstickarticle/55813e1c-8f3a-46ad-8469-60857607da2c/images/63351d45-a9b7-48fa-ba3d-7a6248bc7d6a.png)

\

\

---

Original Source: https://www.mindstick.com/articles/286/ajax-toolkit-update-progress-control-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
