I am attempting to connect to an Access DB in FrontPage using asp pages. Everytime I try to view the page I get an HTTP 500 Internal Server Error message and no page. Could you tell me if my code is correct and maybe there is something wrong with the server. Other asp pages that access SQL server data work fine, I just can't get it to work with my MDB file

Thank

****Code Start******************
<%@ Language=VBScript %><!--#include file="adovbs.inc"--><
Option Explici

Dim rsEmpContacts, cnnDB, strD

strDB = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &
Server.MapPath("/PPOSS/directory.mdb"

Set cnnDB = CreateObject("ADODB.Connection"
cnnDB.Open strD

Set rsEmpContacts = CreateObject("ADODB.Recordset"
rsEmpContacts.open "select * from tblNewEmpContacts order by office", cnnD

%
****Code End**********************

Thanks
Brandon