I guess you would have to hard code the urls into your forum code.
You can use this code, and put it somewhere in your inc_top.asp file:dim strlink
strlink = Mid(Request.ServerVariables("URL"), InstrRev(Request.ServerVariables("URL"), "/")+1)
Then everywhere in your files you would replace "Request.ServerVariables("URL")" and "Request.ServerVariables("script_name")" with this:<% =strlink %>
For example, you would change this:<form action="<% =Request.ServerVariables("URL") %>" method="post" id=form1 name=form1>
to this:<form action="<% =strlink %>" method="post" id=form1 name=form1>
For your members.asp page you would change this:sScriptName = Request.ServerVariables("script_name")
to this:sScriptName = strlink
There might be a few other places in the files that they are used so you would need to change all of them.
- David