B
Bill
Hello, I have a database called "resumes" there is a table called "saved" When I run my asp page I get the following error
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
/mberry25260/myresume.asp, line 32
--- The script on my page looks like the following --------
<%
Dim strName
strName = Trim(Request.Form("Resumelogin"))
%>
<%
strconn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\inetpub\wwwroot\mberry25260\fpdb\resumes.mdb"
set conn = Server.CreateObject("ADODB.Connection")
conn.open strconn
set rs = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT saved.Name FROM saved WHERE saved.Name ='" & strName & "'"
rs.Open strSQL, strconn
%>
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
/mberry25260/myresume.asp, line 32
--- The script on my page looks like the following --------
<%
Dim strName
strName = Trim(Request.Form("Resumelogin"))
%>
<%
strconn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\inetpub\wwwroot\mberry25260\fpdb\resumes.mdb"
set conn = Server.CreateObject("ADODB.Connection")
conn.open strconn
set rs = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT saved.Name FROM saved WHERE saved.Name ='" & strName & "'"
rs.Open strSQL, strconn
%>