
May 6th, 2008, 06:58 PM
|
|
Contributing User
|
|
Join Date: Aug 2006
Location: Wellington, New Zealand
Posts: 291
  
Time spent in forums: 1 Day 22 h 17 m 39 sec
Reputation Power: 5
|
|
|
Session_start not running
Hi, my session_start code is not running on start up of page, here is my code
Code:
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' Code that runs when a new session is started
cls_global.conwelltrust = New OleDbConnection(System.Configuration.ConfigurationManager.ConnectionStrings("db_welltrust").ConnectionString)
cls_global.conwelltrust.Open()
End Sub
this code is in the code file behind the global.asax file,
does anyone know what may be going on here?
|