hi,
i have this code on an asp page on a website. i'm trying to convert this into html/javascript. what's the equivalent of this in javascript, please?
with the exception of server.createobject, which doesn't exist in javascript, i can figure out the rest of it. i just need the equivalent of this in javascript, please.
thanks.
i have this code on an asp page on a website. i'm trying to convert this into html/javascript. what's the equivalent of this in javascript, please?
Code:
DatabaseLocation = Server.MapPath("orders.mdb")
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open DatabaseLocation
Set objRs = conn.Execute("SELECT * FROM orders;")
thanks.