
Step1: - Create one sample web
page
Step2:- Go to default.aspx page
Step3:- In the default.aspx.cs
page add this namespace " using System.Threading; "
Step4:- Before page load method
add this line " static AutoResetEvent _AREvt; "
Step5:- In the page load
method add this code part
_AREvt = new AutoResetEvent(false);
ThreadStart ts = new ThreadStart(Test);
Thread...