sport tm = new sport();
Thread workerThread = new Thread(tm.start);
while (!workerThread.IsAlive)
{
workerThread.IsBackground = true;
workerThread.Start();
Thread.Sleep(300000);
}
this code is into button when click i want every 5 min to call function tm, but doesn't work.
this is a web form not win form.
Thanks
Go to the complete details ...