| View previous topic :: View next topic |
| Author |
Message |
pduncan
Joined: 21 Jul 2006 Posts: 4
|
Posted: Thu Nov 09, 2006 4:21 pm Post subject: Blank Pages |
|
|
| I just finished a site yesterday - several asp pages connecting to an Access database. Anyway, last night it was working fine. Today every page except for index is blank. Any ideas? |
|
| Back to top |
|
 |
admin Site Admin
Joined: 13 Apr 2005 Posts: 1467
|
Posted: Thu Nov 09, 2006 5:11 pm Post subject: |
|
|
Are you using the demo?
Are you closing your database connections?
Are you creating the database connections the correct way
(using CreateObject instead of Server.CreateObject)? |
|
| Back to top |
|
 |
pduncan
Joined: 21 Jul 2006 Posts: 4
|
Posted: Thu Nov 09, 2006 5:31 pm Post subject: |
|
|
Was using baby web server...
I think I am creating db connections corectly... here is my code:
| Code: |
Set oConn = CreateObject("ADODB.Connection")
set oRS = CreateObject("ADODB.RECORDSET")
.
. (walking a rs - stuffing a table)
.
oRS.Close
set oRS = Nothing
oConn.Close
set oConn = Nothing
|
|
|
| Back to top |
|
 |
admin Site Admin
Joined: 13 Apr 2005 Posts: 1467
|
Posted: Thu Nov 09, 2006 9:47 pm Post subject: |
|
|
That should be ok.
There are currently no known problems with the application.
If you think you found a problem please give mored details about how to reproduce this problem. You might want to try Quick 'n Easy Web Server which is an updated version of Baby Web Server. |
|
| Back to top |
|
 |
|