Click here to Skip to main content
15,922,015 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionReading Contents of a Word File. Pin
deepaks314-Jun-06 19:15
deepaks314-Jun-06 19:15 
AnswerRe: Reading Contents of a Word File. Pin
amaneet14-Jun-06 19:22
amaneet14-Jun-06 19:22 
GeneralRe: Reading Contents of a Word File. Pin
deepaks314-Jun-06 19:41
deepaks314-Jun-06 19:41 
QuestionMultiline Datagrid Control [modified] Pin
Nagraj Naik14-Jun-06 19:11
Nagraj Naik14-Jun-06 19:11 
GeneralRe: Multiline Datagrid Control [modified] Pin
amaneet14-Jun-06 19:25
amaneet14-Jun-06 19:25 
AnswerRe: Multiline Datagrid Control Pin
Suamal14-Jun-06 19:36
Suamal14-Jun-06 19:36 
GeneralRe: Multiline Datagrid Control Pin
Nagraj Naik14-Jun-06 20:08
Nagraj Naik14-Jun-06 20:08 
QuestionCount WebSite Visitors Pin
TheEagle14-Jun-06 18:36
TheEagle14-Jun-06 18:36 
Hi..
I wrote the following code to count my website visitors:
(In the Global.asax)
protected static int m_ActiveUsers;
public static int ActiveUsers
{
get
{ return m_ActiveUsers;
}
}
protected void Application_Start(Object sender, EventArgs e)
{

Application.Lock();
m_ActiveUsers=0;
Application.UnLock();

}
protected void Session_Start(Object sender, EventArgs e)
{
Application.Lock();
++m_ActiveUsers;
Application.UnLock();
}
protected void Session_End(Object sender, EventArgs e)
{
Application.Lock();
--m_ActiveUsers;
Application.UnLock();
}

But the problem it doesnt give me the right number always.Some times this code tells me there is two visitors while there is no one except me.And some times it doesnt decrement the visitors count number when i exit.

Do any one know how to make a better way that wont be affected by application errors and will solve my problem?

"I am too late but i will never give up"
AnswerRe: Count WebSite Visitors Pin
Suamal14-Jun-06 19:04
Suamal14-Jun-06 19:04 
GeneralRe: Count WebSite Visitors Pin
TheEagle14-Jun-06 19:27
TheEagle14-Jun-06 19:27 
GeneralRe: Count WebSite Visitors Pin
Suamal14-Jun-06 19:39
Suamal14-Jun-06 19:39 
GeneralRe: Count WebSite Visitors Pin
TheEagle17-Jun-06 7:20
TheEagle17-Jun-06 7:20 
QuestionBind Datagrid With Viewstate Pin
varshavmane14-Jun-06 18:32
varshavmane14-Jun-06 18:32 
AnswerRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 18:58
_AK_14-Jun-06 18:58 
AnswerRe: Bind Datagrid With Viewstate Pin
Tirthadip14-Jun-06 19:21
Tirthadip14-Jun-06 19:21 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 19:43
varshavmane14-Jun-06 19:43 
AnswerRe: Bind Datagrid With Viewstate Pin
Tirthadip14-Jun-06 19:55
Tirthadip14-Jun-06 19:55 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 20:24
varshavmane14-Jun-06 20:24 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 20:29
_AK_14-Jun-06 20:29 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 20:36
varshavmane14-Jun-06 20:36 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 20:41
_AK_14-Jun-06 20:41 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 20:45
varshavmane14-Jun-06 20:45 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 20:49
_AK_14-Jun-06 20:49 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 21:00
varshavmane14-Jun-06 21:00 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 21:22
_AK_14-Jun-06 21:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.