Sazzad said:
that is It cannot destroy my session variable
I am not sure about the nature of your problem, as you provided too few details, however,
you stated that you want to
destroy the session, in which case I would suggest that you use
Session.Abandon();
Note: When this method is called, the current Session object is not deleted until all of the script on the current page have been processed. This means that it is possible to access session variables on the same page as the call to Abandon, but not from another Web page.
Cheers,
Edo