How does asp.net start a thread in an event to open a page?

Source: Internet
Author: User

Click a button on the page to do two things in the button, one is to click the button to finish immediately, and the other is to do other things after clicking the button. If it takes a lot of time to finish the task in sequence, let's take a look at it. [Csharp] view plaincopyprint?
Protected void button#click (object sender, EventArgs e)
{
Label1.Text = TextBox1.Text;
 
// Do the first thing here

Protected void button#click (object sender, EventArgs e)
{
Label1.Text = TextBox1.Text;

// Do the first thing here [csharp] view plaincopyprint?
Dowork ();

Dowork (); [csharp] view plaincopyprint?
// Start the thread immediately after completion
System. Threading. Thread thread = new System. Threading. Thread (new System. Threading. ThreadStart (ThreadChild ));
Thread. Start ();
}

// Start the thread immediately after completion
System. Threading. Thread thread = new System. Threading. Thread (new System. Threading. ThreadStart (ThreadChild ));
Thread. Start ();
}

Open a window after processing in the thread

Public void ThreadChild ()

{

Label2.Text = DateTime. Now. ToString ();

// Response. Write ("");

// An error is inevitable in response to http requests.

// Response. Write ("<script> window. open ('login. aspx ','', ''); </script> ");

// You can open the window by registering

Page. RegisterStartupScript ("", "<script> window. open ('login. aspx ','', ''); </script> ");

}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.