The version that you requested is unavailable. We've redirected you to the latest version of the help.
Version

Getting Started with WebProgressBar

WebProgressBar works as an indicator which shows the end user to what extent a task is completed by indicating the progress starting from a minimum value and ending at a maximum value. There are several WebProgressBar properties that you need to set to have the required minimum, maximum and current values for your application.

  • Minimum  — Starting value of the bar.

  • Maximum  — Ending value of the bar.

  • Value  — Current progress of the bar.

Note
Note:

The default values for Minimum, Maximum and Value are 0, 100 and 0 respectively.

The properties Minimum, Maximum and Value can be set using the smart tag or through the Microsoft® Visual Studio® Property Window or by using the following code :

In Visual Basic:

WebProgressBar1.Minimum = 0
WebProgressBar1.Maximum = 200
WebProgressBar1.Value = 100

In C#:

WebProgressBar1.Minimum = 0;
WebProgressBar1.Maximum = 200;
WebProgressBar1.Value = 100;