Trying to log out with a button click on the tool bar called LogOut and use a confirmation notice. Here is my code which is on my masterpage. when I click on the button, it logs out but does not give the confirmation.
My code behind looks like this:
protected void RadToolBar1_ButtonClick(object sender, RadToolBarEventArgs e)
{
FormsAuthentication.SignOut();
FormsAuthentication.RedirectToLoginPage();
}