I’m trying to connect to my local Navision database via ASP. I have Navision 3.6 and running IIS from Windows XP Prof. I created a system DSN like this: Data Source: navision1 Program Folder: C:\Program Files\Navision Attain\Client Connection: Local Database Name: C:\Program Files\Navision Attain\Client\database.fdb Company Name: myCompanyName User ID: bpeter Password: ******** My ASP file contains the following: <% dim oConn dim oRS set oConn = Server.CreateObject(“ADODB.Connection”) oConn.Open “DSN=navision1;UID=” & “bpeter” & “;Password=” & “password” & “;” set oRS = nothing set oConn = nothing %> When I try to access this page the first thing that happens is a I get the XP Windows message that “salve.EXE has encountered a problem and needs to close. We are sorry for the inconvenience.” What is really frustrating is that the same piece of code (change “Server” to “WScript”) works just fine when run from the command line and cscript. Does anybody have any ideas what could be wrong in my setup/code? Thanks, Ben