When I start up my application from within VS .NET the Sesssion_Start fires twice and my counter goes up by 2s. Why?
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session is started
Application("SessCount") += 1
End Sub