Hi all,
I am trying to write a code for logout, and I want to clear session
My code
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click
Session.Abandon()
Response.Cookies.Add(New HttpCookie("ASP.NET_SessionId", "logAccount"))
Response.Redirect("WebForm5.aspx")
End Sub
and i want to disabling browser's to go back
please hellp !!!!