J
jobs
Hello.
I have asp.net menu with a logout item.
I handle the the menu click as follows:
Protected Sub Menu_MenuItemClick(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.MenuEventArgs) Handles Menu.MenuItemClick
If Menu.SelectedValue = "Logout" Then
Response.Write("Logout")
FormsAuthentication.SignOut()
End If
But notice It does not log me out until resubmit the page.
How should I handle this? redirect to itself? whats the best way to
automatically reload the page in asp.net 2.0?
Thanks for any help or information.
I have asp.net menu with a logout item.
I handle the the menu click as follows:
Protected Sub Menu_MenuItemClick(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.MenuEventArgs) Handles Menu.MenuItemClick
If Menu.SelectedValue = "Logout" Then
Response.Write("Logout")
FormsAuthentication.SignOut()
End If
But notice It does not log me out until resubmit the page.
How should I handle this? redirect to itself? whats the best way to
automatically reload the page in asp.net 2.0?
Thanks for any help or information.