i have a doubt on how to show a popup???`
if (machineID.Count != 0)
{
checkMachineGrpState(machineID);
}
else
{
FormsAuthentication.SignOut();
Session.Abandon();
Response.Redirect("~/Default.aspx");
}
Ok now what im am doing in else statement is signing out the user and sending him back to the log out page.... I need to how him some pop up message that he is being signed out i cant figure out how to do that... i tried messagebox but it wont work with servver and client side.. I want to use AJAX but dont know how... any suggestions.... thanks