在page_load里面运行了一个线程
Thread m_WorkerThread m_WorkerThread = new Thread(new ThreadStart(GetOutEmail));
                     m_WorkerThread.Start();想要在当前页面的中止按钮点下回发后,中止该线程,如何做到?
protected void btnStop_Click(object sender, EventArgs e)
        {
            
        }