find out how many number of authenticated users are accessing
how to find out how many number of authenticated users are accessing our project or application in asp.net ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Mar 17, 2011, 12:38 PM
User ID ==> Session["UserID"].ToString(),
Page URL ==> Request.Url.AbsoluteUri + "," + Request.Url.AbsolutePath,
Page Access Time ==> sysdatetime(),
Client IP Address ==> Request.ServerVariables["REMOTE_ADDR"]
like this..
VEERA sekharPosted Mar 17, 2011, 1:02 AM
Mahesh ChandPosted Mar 16, 2011, 11:25 AM
Cheers!
Mahesh ChandPosted Mar 16, 2011, 11:24 AM
If you do not know how to use the application state in ASP.NET, please search this website on home page for Application state. You will see many samples.