Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.Net LoginControls - User can't logout in Firefox

Basically, the logout link doesn't do anything, but only in Firefox. (I can login and out freely from other browsers) There really isn't a whole lot of information I can really give other than that, since I'm still new to this project and .net as a whole, and know almost nothing about the login controls.

So if someone else has experienced a similar issue in the past, and can recognize the issue with the little info I have, that would be great! If not, sorry for the lack of depth, but its all I have.

If it helps, here is the code for where the logout link is:

<LoggedInTemplate>
    ...
    <asp:LoginStatus ID="HeadLoginStatus" runat="server" LogoutAction="Redirect" LogoutText="Log Out" LogoutPageUrl="~/Anonymous/Login.aspx" />
</LoggedInTemplate>
like image 354
Jordan Foreman Avatar asked Nov 13 '22 21:11

Jordan Foreman


1 Answers

Would you check out the asp.net authentication cookie being there during the session (can use firebug, for example) and whether it is being flushed on logout?

like image 169
Arthur P Avatar answered Dec 22 '22 08:12

Arthur P