[原创]asp.net中的线程
ThreadPool.QueueUserWorkItem(new WaitCallback(SendJson));
Thread thread = new Thread(new ThreadStart(SendJson));
thread.Start();
ThreadPool.QueueUserWorkItem(new WaitCallback(SendJson));
Thread thread = new Thread(new ThreadStart(SendJson));
thread.Start();