Help with ODBC and ASP

Hello All, Following is how I configured my System DSN Data Source = Navision Program Folder = C:\Program Files\Navision Attain 360 Connection = Local Database Name = C:\Program Files\Navision Attain 360\Database.fdb Company Name = CRONUS USA, Inc. User ID = TEST Password = ********** Options Commit Cache = True Query Time-Out = True Enable Blob Field = True Identifiers = a-z,A-Z,0-9,_ Option Field Type = Integer Everything else is pretty much defaulted. Following is the Code in my ASP db_Connection = “DSN=NAVISION” Set oConn = Server.CreateObject(“ADODB.Connection”) oConn.Open db_Connection Set oRs = oConn.Execute(“select FirstName from EmployeeHours”) oRs.close oConn.close oConn.Nothing Now I don’t know what is wrong but I seem to establish a connection of some sort. But then my page errors out with a "page cannot be found after about 4 - 5 minutes of run-time. Then I am locked out and cannot open a navision session. Any help would be great. Thx. [8D]