1
Answer

Session-security

kalpa vachhani

kalpa vachhani

13y
1.6k
1
if (!object.Equals(Session["Member_ID"], null))
  {
  Session["Member_ID"] = null;
  Session.Abandon();
  }

 when I goes back in the browser it still gives Users data inspite of I have ended the session till I refresh the page  What should i do

I dont want to allow button back to go back
Answers (1)