Re: Get User Credentials
Hmm.. interesting.. let me read this... i'll just inform you if it answers my issue.. Thanks
View ArticleRe: Get User Credentials
Hi Usually, ASP.NET creates a FormsAuthenticationTicket to store the login information in client side, this will help web site to identify users in every request. You mean try to get this...
View ArticleRe: Get User Credentials
Hi XiaoYong Dai,Thank you for your response.. Yes i understand what you mean... But my concern is when the Server connection is cut down then how would i get the user credentials who logs in to the...
View ArticleRe: Get User Credentials
Hmm, in ASP.NET 2.0, you may enumerate all the users in database and sort according to MembershipUser.IsOnline PropertyUser is consider as online when Login, MembershipUser.IsOnline check if the user...
View ArticleRe: Get User Credentials
Thanks for the information...BTW: Do you have any idea. or any articles that describes to on how to implement Offline Login in Aspnet?
View ArticleRe: Get User Credentials
HiSince Http is a stateless protocol, whenever user requests a page, the ASP.NET Forms Authentication will automatically pick up cookie, distinguish anonymous user and authenticated user. So I'm afraid...
View ArticleGet User Credentials
Hi All,Is anybody in the community knows how to get the Windows User Credential in the Client machine if the Server is Offline?I have posted the details in this...
View Article