Progress Area

Controls

Rate this demo

Thank you for your post!

RadProgressArea - Telerik's ASP.NET ProgressArea

Press the button below to initiate a custom process and monitor the progress with RadProgressArea





  • Total Progress % ( ) Total
  • Progress % ()
  • Custom progress in action:
  • Elapsed time:  Estimated time:  Speed:


About RadProgressArea for ASP.NET AJAX

Telerik's Web Forms Progress Bar control allows your users to monitor the progress of any measurable process. You can also use it in combination with file upload components. You can easily style the control and make it fit your scenario thanks to the 20 built-in skins and support for templates.

RadProgressArea and 70+ other controls are part of RadControls for ASP.NET AJAX, a comprehensive toolset taking care of the common functionality of your application, while leaving you with more time to work on the business logic of the app.

About This Demo

This demo illustrates how easy it is to show progress monitoring with Telerik's Progress Bar. For that purpose you need to simply add a RadProgressArea and RadProgressManager on your page. Then using the RadProgressContext class you send the progress couters to RadProgressManager. For more details on the ProgressArea API and configuration settings, check out this help article.


Get Started

  • Use Telerik’s Visual Studio Extensions (which you have installed together with the RadControls) to quickly create, upgrade and configure your RadControls projects. Save time by using the ready-to-use Visual Studio templates that cover common application scenarios.
  • Find the controls in need in your VS toolbox and use the Design-time surface and rich wizards to configure them quickly.
  • If you’d like to learn more about how to best implement the RadControls, browse the Telerik folder in your Start menu and use the shortcuts there to access the local demos, online documentation or open the sample examples app in Visual Studio.
  • If you like this particular ProgressArea demo, you can use the following path to find it in the sample website application:
progressarea/examples/customprogress

Key Features

  • Progress Monitoring of Measurable Processes
  • File Upload Process Visualization
  • Templates for Easy Customization

Resources

C# VB
Show code in new window Demo isolation steps
<%@ Page Language="c#" CodeFile="DefaultCS.aspx.cs" AutoEventWireup="true" Inherits="Telerik.Web.Examples.ProgressArea.CustomProgress.DefaultCS" %>

<%@ Register Src="~/Upload/Examples/ObsoleteMessage.ascx" TagName="ObsoleteMessage"
    TagPrefix="obsoleteMessageUC" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register Src="~/ProgressArea/Examples/CustomProgress/Info.ascx" TagName="Info"
    TagPrefix="qsf" %>
<%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
    <title>Custom progress monitoring with RadProgressArea for ASP.NET AJAX</title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="QsfSkinManager" runat="server" ShowChooser="true" />
    <telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" DecoratedControls="All" EnableRoundedCorners="false" />
    <div>
        <qsf:InformationBox ID="InformationBox1" runat="server">
            Press the button below to initiate a custom process and monitor the progress with
            RadProgressArea
        </qsf:InformationBox>
        <br /><br />
        <telerik:RadButton ID="buttonSubmit" runat="server" Text="Start Processing" OnClick="buttonSubmit_Click">
        </telerik:RadButton>
        <br /><br /><br />
        <telerik:RadProgressManager ID="RadProgressManager1" runat="server" />
        <telerik:RadProgressArea ID="RadProgressArea1" runat="server" />
    </div>
    <br /><br />
    </form>
</body>
</html>