If I browse to an asp.net web page that has the following in the page load, how long will the thread continue to run for after I close the browser? I would assume it would just finish on its own, but I'm not sure if it will terminate when the session ends, or something like that.
protected void Page_Load(object sender, EventArgs e) {
Thread T = new Thread(new ThreadStart(longRunningMethod));
T.Start();
}
Thanks.