Hi all
I have declared a Session variable in web handler i-e .ashx file like below
int SaleID;
HttpContext.Current.Session["tempSaleID"] = SaleID;
Now i want to remove this Session variable in class file i-e .cs
In normal cases Session variable are removed using
Session.Remove("SaleID");
but in this case its not working because its declared in web handler.
Kindly tell me how can i remove this?