T
Thomas A. Rowe
Along as each record has a unique ID, then all you need to pass to the query is the ID
http://www.netterweb.com/search/fllartclvw.asp?ID=<%=FP_FieldURL(fp_rs,"ID")%>
Then on the page
in your query:
"SELECT ArticleTitle, Author, Description, Keywords FROM databasetable WHERE ID = " &
Request.QueryString("ID")"
To display:
<title><%=fp_rs("articletitle")%> by <%=fp_rs("author")%></title>
<meta name="description" content="<%=fp_rs("description")%>">
<meta name="keywords" content="<%=fp_rs("keywords")%>">
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
http://www.netterweb.com/search/fllartclvw.asp?ID=<%=FP_FieldURL(fp_rs,"ID")%>
Then on the page
in your query:
"SELECT ArticleTitle, Author, Description, Keywords FROM databasetable WHERE ID = " &
Request.QueryString("ID")"
To display:
<title><%=fp_rs("articletitle")%> by <%=fp_rs("author")%></title>
<meta name="description" content="<%=fp_rs("description")%>">
<meta name="keywords" content="<%=fp_rs("keywords")%>">
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================