A
ADN
Hi, I am creating a custom HTTPModule to intercept the request of when
the user is attempting to retrieve a session variable. For instance,
if I set a session variable in my code like so:
session["myString"] = "Hello World";
When the request for that session variable "myString" is attempted to
be retrieved, I would like to intercept that request like so:
if (Request is for session variable "myString")
{
//send this string instead
}
Is it even possible to intercept the request of a session variable in
a custom HTTPModule?
the user is attempting to retrieve a session variable. For instance,
if I set a session variable in my code like so:
session["myString"] = "Hello World";
When the request for that session variable "myString" is attempted to
be retrieved, I would like to intercept that request like so:
if (Request is for session variable "myString")
{
//send this string instead
}
Is it even possible to intercept the request of a session variable in
a custom HTTPModule?