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.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, Please check the samples at here: http://demo.essentialobjects.com/Default.aspx?path=ProgressBarThe three "Server Side Task" samples explained this in great details. Thanks!
|
Rank: Newbie Groups: Member
Joined: 2/11/2009 Posts: 2
|
I have got the answer in the previous link. Thank you very much.
|