Dear all,
I am using a RadUpload to display a lengthy operation that collecting data, it is performing well.
I need to execute another lengthy process after that using the same upload control, but it doesn't ... it just postback with nothing displayed.
Here is my scenario:
I need to do another loop to perform additional processing using the same concept as the above but it doesn't
How can I achieve that ..
Best regards,
Waleed
I am using a RadUpload to display a lengthy operation that collecting data, it is performing well.
I need to execute another lengthy process after that using the same upload control, but it doesn't ... it just postback with nothing displayed.
Here is my scenario:
| RadProgressContext context = RadProgressContext.Current; |
| context.PrimaryTotal = mm.Count.ToString(); |
| context.SecondaryTotal = mm.Count.ToString(); |
| for (int i = 0; i < mm.Count; i++) |
| { |
| context.PrimaryValue = i.ToString();context.PrimaryPercent = i.ToString(); |
| context.SecondaryValue = i.ToString();context.SecondaryPercent = i.ToString(); |
| context.CurrentOperationText = "Generating : " + mm[i].Name; |
| if (!Response.IsClientConnected) break; |
| // My processing goes here ... |
| } |
How can I achieve that ..
Best regards,
Waleed