Any one help me out, how to work with LoginStatus control in asp.net...

the statu before login should be 'userlogin' after logged in ,it automatically changes to 'userlogout'

any suggestions??

link|improve this question

73% accept rate
It's a valid behavior of this control - show user's current login status. What's the problem with that? – sashaeve Feb 17 '10 at 9:45
do you want to change the "text" that is displayed? – davidsleeps Feb 17 '10 at 9:46
feedback

2 Answers

up vote 1 down vote accepted

How about this

<asp:LoginView ID="ctlRightNavbar" runat="server">
   <AnonymousTemplate>
       <a href="/login.aspx" class="navbar">userlogin</a>
   </AnonymousTemplate>
   <LoggedInTemplate>
      <a href="/logout.aspx" class="navbar">userlogout</a>
   </LoggedInTemplate>
</asp:LoginView>

This will make a more custom view for you if you do not wish to use LoginStatus. You can read more about the above code sample here.

link|improve this answer
feedback

Check this link. And good luck dealing with this issue!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.