Posted on: 6/16/2014 1:21:56 AM | Views : 338

Hi 
i would like to know how i can fix my code to logout of the session when the user click on signoutbtn , here is the server code
Many thanks for all of you
public partial class SVM : System.Web.UI.MasterPage { string sc = ConfigurationManager.ConnectionStrings["BeravaConnectionString"].ConnectionString.ToString(); protected void Page_Load(object sender, EventArgs e) { if (Session["UsrNme"] != null) { loggedview.Visible = true; loginview.Visible = false; } else { loggedview.Visible = false; loginview.Visible = true; } } protected void loginbtn_Click(object sender, EventArgs e) { } protected void signoutbtn_Click(o ...

Go to the complete details ...