The problem is that after the call to Server.Transfer or Server.Execute the
page i'm transfering to throws an exception when it tries to access the
Session object. The error says that I must set enableSessionState to true on
the page directive or the pages tag on the web.config. Obviously they are
both set to true.
I also implemented IRequiereSessionState on my HttpHandler but it did not
make a difference.
Any suggestions?
The session was already loaded, I tested it before the transfer call.
What I ended up doing was use PageParser to create an instance of the
compiled version of the .ASPX file and then call it's ProcessRequest method.
That's how it's done by the built-in handler.
"bruce barker" <bruce...@discussions.microsoft.com> wrote in message
news:1E6DFE82-EC43-4F5B...@microsoft.com...