Thanks, that helped. I ended up using my main site to lookup the UID from the WWF MDB. Then when a user clicks on the link for "Support" at the top of the page, the UID is appended to the page call. Not really fancy but functional, here is what I did:
In my website page:
<!--#include file="Connections/forumconn.asp" -->
set rs1=server.createobject("adodb.recordset")
rs1.open("select * from tblAuthor where Username='"& session("SL_Username") &"'"),session("forumconn")
session("UID")=rs1("User_code")
rs1.close
End If
Then in the WWF default.asp page:
if request("UID")<>"" then
Response.Cookies("WWF")("UID") = request("UID")
Response.Cookies("WWF")("LV") = Now()
Response.Cookies("WWF").Expires = DateAdd("yyyy", 1, Now())
end if
Then in the main website page that calls/links to the forum:
Thanks again for your help.
Gary
Edited by garyn - 21 May 2006 at 4:28pm