Rank: Newbie Groups: Member
Joined: 7/28/2020 Posts: 1
|
Hi
We used to have an update label control with progress bar from another company which worked ok with IE. Now we moved to Edge and it does not work any more and we are considering your product.
We have functionality that user clicks a button and long process is launched and update label d show what stage of the process it is. So, we wonder if you have this functionality. The only thing i saw was Progress Bar, nut when i used simulation of long process like i show below it does not work right (it gets immediately to 99 percent, then 100 immediately). Maybe i am using wrong properties or styles?
Also, we wonder if you have control which would be like "Pop Up" confirmation and the d continue with asp script or finish?
Thank You
Public Sub ProgressBar1_RunTask(sender As Object, e As ProgressTaskEventArgs) Handles ProgressBar1.RunTask
Dim l As Long = 0
Dim i As Integer
For i = 0 To 100
' System.Threading.Thread.Sleep(500)
Do While l < 4000000001 l = l + 1 Loop e.UpdateProgress(i) Next
End Sub
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi, Your code looks fine. We are not aware of any issues with Edge browser. You can try to use Edge browser to access this page and it should work for you: http://demo.essentialobjects.com/Demos/Progress%20Bar/Server%20Side%20Task/Demo.aspxPlease keep in mind because ProgressBar is a free control, we do not provide any technical support on this control unless you are already have a license for any of our product. Thanks!
|