I am using the PageAsyncTask object to execute some elements in parallel on a standard ASP.NET page. However I need one task to have access to Http Session. Is there a way to get the Http Session passed to the PageAsyncTask?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
apparently a PageAsyncTask has a On msdn it looks like they use it to name their Task, but you could (ab)use it and just put Note: saying "(ab)use" because I'm not certain what the state paramater is meant to be used for, but it says "The object that represents the state of the task." You could argue the current session is a representation of the current state. |
|||
|
|
|
You should normally be able to access session with:
d. |
|||
|
|