Hi,
I am doing Parrel Processing like
Parallel.ForEach(tblTestCase.AsEnumerable(), (drTC) =>
---1. Logical code
-- 2. add rows to datatable
);
//3. BindGrid with datatable
Now the requirement is as an when row added to datatable reflect that in UI.
Can anyone suggest an apporch. I can do this
1. Make ajax call in loop of tblTestCase from UI aspx, but in that case I not able to use Parallel Processing.
Please suggest me the approch