Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ProgressBar in ASP.NET WebPage

Status
Not open for further replies.

cyberdeminout

Programmer
Jul 19, 2005
37
US
Hi

Can anyone help me how to show progress bar at runtime in asp.net/vb.net.

Thanks in advance.

Ram

 
Hi Rick,

Thanks for your quick response.

Sorry, I didn't find any asp.net progressbar forum. Could you please provide me link or thread name?

Thanks alot.

Ram
 
Err, I mean, post a question about how to do this on the ASP.Net forum. Most of the assistance in this forum is related to windows app related development, in which making a progress bar is signigicantly different.

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
The line of code that fills a Pbar in VB.NET may look like:

Pbar1.Maximum= a
Pbar1.Minimum= b
Pbar1.value=1
Pbar1.step= st

For x=1 to barsize
Pbar1.PerformStep
Pbar1.Refresh
Next x

Regards,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top