c# - How to call a handler from another handler -


I am creating session variable in a handler

I am reaching that variable in other handlers And I'm using it.

Now if that session variable is zero

  if (httpNTtex.Session ["name"] == faucet) // Call the other handler which sets the session  

How can I call another handler so that it resets the session variable?


Comments