Saturday, March 31, 2012

where do i place my events?

where do i place these?


Sub session_OnStart
Dim intOnline As Integer
intOnline = intOnline + 1
End Sub

Sub session_OnEnd
Dim intOnline As Integer
intOnline = intOnline - 1
End Sub

Sub application_OnStart
Dim intOnline As Integer
intOnline = 0
End Sub

In your global.asax file.

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