christheprogrammer
Programmer
Hi all,
I have a default.aspx page which is made up of several frames. I am using forms authentication, and when the user signs out, how can I make it so that the frames dissappear, and the login page appears on its own? (currently when the signout button is pressed, the login page appears inside the main frame - unsecured). Here is my code for the signout button:
Private Sub signOutButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles signOutButton.Click
FormsAuthentication.SignOut()
Session.Abandon()
Response.Redirect("Default.aspx", True)
End Sub
Thanks in advance Chris
I have a default.aspx page which is made up of several frames. I am using forms authentication, and when the user signs out, how can I make it so that the frames dissappear, and the login page appears on its own? (currently when the signout button is pressed, the login page appears inside the main frame - unsecured). Here is my code for the signout button:
Private Sub signOutButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles signOutButton.Click
FormsAuthentication.SignOut()
Session.Abandon()
Response.Redirect("Default.aspx", True)
End Sub
Thanks in advance Chris