In your global.asax file.
Sub session_OnStart
Dim intOnline As Integer
intOnline = intOnline + 1
End SubSub session_OnEnd
Dim intOnline As Integer
intOnline = intOnline - 1
End SubSub application_OnStart
Dim intOnline As Integer
intOnline = 0
End Sub
Brian
My friend, before placing these lines of code, try to understand what they are and you have to place them in the global file.
regards.
i know what they are =P, im just not familiar with asp.net.
0 comments:
Post a Comment