Welcome Guest Search | Active Topics | Sign In | Register

Update anothe part of the page Options
taha
Posted: Wednesday, February 11, 2009 9:36:17 AM
Rank: Newbie
Groups: Member

Joined: 2/11/2009
Posts: 2
Hi, i am a new user for your eo progressbar package, i want to show the progress bar increament
and at the end i want to change the value of a textBox in my page,may be like that:

protected void ProgressBar1_RunTask(object sender, EO.Web.ProgressTaskEventArgs e)
{
for (int i = 0; i < 100; i++)
{
//Check whether the task has been stopped
if (e.IsStopped)
break;

//Perform some work
System.Threading.Thread.Sleep(100);

//Update client side progress
e.UpdateProgress(i, null);
}

TextBox1.Text = "this well done";

}

But the value of text box does not change,Why?Can you help me.
Thanks.
eo_support
Posted: Wednesday, February 11, 2009 9:39:51 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,089
Hi,

Please check the samples at here:

http://demo.essentialobjects.com/Default.aspx?path=ProgressBar

The three "Server Side Task" samples explained this in great details.

Thanks!
taha
Posted: Wednesday, February 11, 2009 10:07:28 AM
Rank: Newbie
Groups: Member

Joined: 2/11/2009
Posts: 2
I have got the answer in the previous link.
Thank you very much.


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.