Hi
Would you mind providing more details? Your web.config and code snippet will be most helpful.
LoginStatus can display the login status of the current user.
When the LogoutAction property is set to Redirect, the user is redirected to the URL contained in LogoutPageUrl. <form id="form1" runat="server">
<asp:LoginStatus id="LoginStatus1" runat="server"
LogoutAction="Redirect"
LogoutPageUrl="LogoutPage.aspx"/>
</form>
BTW, please make sure anonymous user will not be restricted to LogoutPage.aspx, Hope it helps
<system.web>
<location path="LogoutPage.aspx" >
<system.web>
<authorization >
<allow users="*"/>
</authorization>
</system.web>
</location>
</system.web>
Best Regards
XiaoYong Dai
Microsoft Online Community Support
Please remember to click ?Mark as Answer? on the post that helps you, and to click ?Unmark as Answer? if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.