Hello:
I have windows 7 prof and windows server 2008. I have the database in the folder the way it is in the code.
I found this code on the internet and dropped in my server to test and it is not doing what it is supposed to be doing. What else I need to do in order to get this working.
I got error: HTTP 500 Internal Server Error
Thank you.
I have windows 7 prof and windows server 2008. I have the database in the folder the way it is in the code.
I found this code on the internet and dropped in my server to test and it is not doing what it is supposed to be doing. What else I need to do in order to get this working.
I got error: HTTP 500 Internal Server Error
Thank you.
Code:
<html>
<body>
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
set rs = Server.CreateObject("ADODB.recordset")
rs.Open "SELECT * FROM Customers", conn
do until rs.EOF
for each x in rs.Fields
Response.Write(x.name)
Response.Write(" = ")
Response.Write(x.value & "<br>")
next
Response.Write("<br>")
rs.MoveNext
loop
rs.close
conn.close
%>
</body>
</html>