hey. i am using Richard Kinser's topic.asp file (he named his topic2.asp in one of his releases).
i get this error:
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters
/forums/topic.asp, line 490
lines 474-490 read:
sub GetFirst()
'## Forum_SQL - Get Origional Posting
strSql = "SELECT FORUM_MEMBERS.M_NAME, FORUM_MEMBERS.M_ICQ, "
strSql = strSql & "FORUM_MEMBERS.M_YAHOO, FORUM_MEMBERS.M_AIM, "
strSql = strSql & "FORUM_MEMBERS.M_TITLE, FORUM_MEMBERS.M_HOMEPAGE, "
strSql = strSql & "FORUM_MEMBERS.MEMBER_ID, FORUM_MEMBERS.M_LEVEL, "
strSql = strSql & "FORUM_MEMBERS.M_POSTS, FORUM_MEMBERS.M_COUNTRY, "
strSql = strSql & "FORUM_MEMBERS.M_CITY, FORUM_MEMBERS.M_STATE, "
strSql = strSql & "FORUM_MEMBERS.M_DATE, FORUM_MEMBERS.M_PMRECEIVE, "
strSql = strSql & "FORUM_TOPICS.T_DATE, FORUM_TOPICS.T_SUBJECT, FORUM_TOPICS.T_AUTHOR, "
strSql = strSql & "FORUM_TOPICS.TOPIC_ID, FORUM_TOPICS.T_MSGICON, FORUM_TOPICS.T_MESSAGE "
strSql = strSql & " FROM FORUM_MEMBERS, FORUM_TOPICS "
strSql = strSql & " WHERE FORUM_MEMBERS.MEMBER_ID = FORUM_TOPICS.T_AUTHOR "
strSql = strSql & " AND FORUM_TOPICS.TOPIC_ID = " & Request.QueryString("TOPIC_ID")
**<490>** set rs = my_Conn.Execute (strSql)
' (some more code here)
the **<490>** is not included (i just showed that cuz that's the line with the error)
RDoGG™