Re: Thread not working
- From: "George" <nospam@xxxxxxxxxxx>
- Date: Thu, 5 Jan 2006 13:23:20 -0500
|
I think you have problem somewhere else. Whatever you are
doing with threads looks correct. You might post the whole code for your
Page object.
Here are the facts that might help you figure out where
problem is.
Session is locked during ASP.NET called. So only one request
for one session can come in. Second request (with same SessionID) will be
queued.
The page must run through the whole lifecycle in order
for Session object to be unlocked for next request.
Response.Redirect( url ) or Response.Redirect( url,
true ) will terminate page thus ending it's lifecycle.
Response.Redirect( url, false) will not end the lifecycle you
can still be blocking the session.
------------------------------------------------------------------------------------------
I would replace redirect with Response.Write("AAA") and
then see if the IE logo in right top corner is spinning.
If it is that means the page is hanging somewhere.
Hope that helps./
George.
|
- References:
- Re: Thread not working
- From: George
- Re: Thread not working
- Prev by Date: Re: Why the server controls do not show?
- Next by Date: Re: Is Grid layout still available in ASP.NET 2.0?
- Previous by thread: Re: Thread not working
- Next by thread: Re: Thread not working
- Index(es):
Relevant Pages
|