WebProgressBar1.Minimum = 0 WebProgressBar1.Maximum = 200 WebProgressBar1.Value = 100
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.
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;