Click here to Skip to main content
15,913,758 members

Comments by Riyasktr (Top 2 by date)

Riyasktr 16-Jul-12 2:15am View    
If i using as per your answer ( without threading) it is not possible to manage the long time process and i can;t do the next process till y first process will be completed.

In my scenario the thread is completed it automatically call the method "PTACalculationEnd"

Thread t = new Thread( new ThreadStart(delegate()
{
DoPTACalculations(e, PTACalculationEnd);
}));

t.Start();
Riyasktr 10-Jul-12 16:39pm View    
Dear

as per my question i am asking , am not doing any filtering , i have a template linkbutton column in the grdiview and the link button do some operations, It do some calculation and it create some records and insert to a database table a, actually my application an attendance management system.

For this link button operation , it take some more time and i am not asking that time consuming, if i click the first row link button and autmaticcallt there is apostback occurs , i want to prevent this postback and possible to click the second row link button , but and do the second calculation do asynchrounsly without effecting my previous operation like facebook Load on demand.