F
Fernando Rodriguez
I created an HttpHandler for rewritting URLs.
It simply checks if the requested page is on a list of "special" pages (that
do not exist) and if it is on the list then it will transfer to an ASPX page
that will generate the content dynamically.
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?
It simply checks if the requested page is on a list of "special" pages (that
do not exist) and if it is on the list then it will transfer to an ASPX page
that will generate the content dynamically.
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?