I expect this has been asked 26.4 times already but...
I am passing a page name to an ASP in the request string. I want to then include it using <!-- #include file='filename' -->
(fName is the variable holding the page name)
if I do<%
response.write "<!-- #include file='" & fName & "' -->"%>
the include string gets written correctly but the page doesn't get included.
if I do
<!-- #include file='<%=fName%>'-->
it says can find file <%=fName%>
