ASP CODE:
<html>
<body>
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "D:\Inetpub\wwwroot\northwind.mdb"
cid=Request.Form("Username")
set rs = Server.CreateObject("ADODB.recordset")
rs.Open "SELECT Username,add,pin,cost FROM Customers WHERE Username='" & cid & "'", conn
%>
<table border="1" width="100%">
<%do until rs.EOF%>
<tr>
<%for each x in rs.Fields%>
<td><%Response.Write(x.value)%></td>
<%next
rs.MoveNext%>
</tr>
<%loop
rs.close
conn.close
%>
</table>
Thank You for purchasing this product
</body>
</html>
I AM GETTING THIS ERROR:
Error Type:
Microsoft JET Database Engine (0x80004005)
Could not find file 'D:\Inetpub\wwwroot\northwind.mdb'.
/sample.asp, line 7
PLEASE HELP !!!!!!!!