i have a prob not quite sure which one i have to edit.. error...
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
and could u help me configure the statement to display either tables..
this is the part i'm displayin the titles...once i click one of the titles... it will reach to another page sending out the title and the content of the title that you clicked..
<%
if session("cho"
="posts" then
obrs.Open "SELECT * FROM posts WHERE postID=" & request.querystring("postID"
, obconn
end if
%>
<%
if session("cho"
="ListFiles" then
obrs.Open "SELECT * FROM ListFiles WHERE UploadID=" & request.querystring("listid"
, obconn
end if
%>
<%
if session("cho"
="favourites" then
obrs.Open "SELECT * FROM favourites WHERE favID=" & request.querystring("favID"
, obconn
end if
%>
<%
if session("cho"
="minutes" then
obrs.Open "SELECT * FROM minutes WHERE minID=" & request.querystring("minID"
, obconn
end if
%>
this is the part..where u display the title and the contents but i'm not quite sure how does it work when u want to select another table and display it.. i got only one table able to display.... so whuts my problem here?
<%=obrs("title"
%>
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
and could u help me configure the statement to display either tables..
this is the part i'm displayin the titles...once i click one of the titles... it will reach to another page sending out the title and the content of the title that you clicked..
<%
if session("cho"
obrs.Open "SELECT * FROM posts WHERE postID=" & request.querystring("postID"
end if
%>
<%
if session("cho"
obrs.Open "SELECT * FROM ListFiles WHERE UploadID=" & request.querystring("listid"
end if
%>
<%
if session("cho"
obrs.Open "SELECT * FROM favourites WHERE favID=" & request.querystring("favID"
end if
%>
<%
if session("cho"
obrs.Open "SELECT * FROM minutes WHERE minID=" & request.querystring("minID"
end if
%>
this is the part..where u display the title and the contents but i'm not quite sure how does it work when u want to select another table and display it.. i got only one table able to display.... so whuts my problem here?
<%=obrs("title"