Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
1k views

ASP.NET LoginStatus inside LoginView doesn't trigger LoggingOut event

I have a LoginView in my APS.NET application with AnonymousTemplate and LoggedInTemplate. I've put LoginStatus control inside LoggedInTemplate but it doesn't work as expected. Here's the code ...
2
votes
6answers
161 views

Managing login in php

Obviously I have my own opinion and way of doing this, but I would be curious to see if there were any better ways. How do you manage logins, i.e. check if user is logged in with valid login before ...
1
vote
2answers
2k views

How to change login status in LoginView control

How to change status from first Template to second template when I'm login into the system? <asp:LoginView ID="HeadLoginView" runat="server" EnableViewState="false"> ...
0
votes
2answers
104 views

How to center loginStatus login screen

I am trying to center the login control that shows after selecting login using the loginstatus control. <div id="linkContent"> <asp:LoginStatus ID="LoginStatus2" runat="server" ...
0
votes
0answers
72 views

LoginStatus control (link) doesn't work when javascript error on the page

I have a complicated CMS system and it's possible to bugger up a control on the page to generate a javascript error. If there is a javascript error on the page, the link to login no longer works. The ...
0
votes
5answers
271 views

ASP Login Control - Checking login status

I want to use my code behind (C#) to check and see if a user is logged in or not on page load. I assume this is really basic, but I'm still new to .net This is basically what I want: if(loggedIn == ...
0
votes
0answers
323 views

How to change the login status to logout status in asp.net [closed]

Possible Duplicate: ASP.NET Membership: how to set the user as logged in I have developed a web application in which I have used two master pages (masterpage1,masterpage2). In both master ...