Recordset Error
I know this must be so easy but I keep getting the wrong output.
I have a LOGIN PAGE, LOGGED IN PAGE and an ACCESS DATABASE.
When you login, a message should come up and say,
"Good evening Mally"
Instead when you login, a message comes up saying,
"Good evening
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/html/search.asp, line 272"
Line 272 reads
<%=(Recordset1.Fields.Item("ChristianName").Value) %>
I have a recordset in the LOGGED IN PAGE,
SELECT ChristianName
FROM tblUsers
WHERE ChristianName = 'MMColParam'
MMColParam 1 Session("ChristianName")
In the login page I have no recordset. All I have is the 'User Authentication LOGIN USER'.
Any suggestions?
|