| | I'm making a page (in ASP2.0 with VBScript) wich has to include a file but the path to it is composed. Normally inluding a file is done using <!--#INCLUDE FILE="file.asp"--> But the url to the file is now composed as I said trough some variables: Server.MapPath(conPath & Request.QueryString("p") & "/index.asp") This whole bunch (in an example case the variable should be "./Conten/Main/Home/index.asp" which shoul be included. But how do I include such a variable since next two tries of me didn't work: <!--#INCLUDE FILE=<%=Server.MapPath(conPath & Request.QueryString("p") & "/index.asp")%>--> Neither worked: <% <!--#INCLUDE FILE=Server.MapPath(conPath & Request.QueryString("p") & "/index.asp")--> %> |

