Alternative to using variables in include directive

2000-06-11 Thread Peter White
Hello, I'm building a site that includes a dynamic header file based on who the visitor was referred by. I'm currently including the header as follows: <% if (referred_by != null && referred_by.equals("ClientA")) { %> <%@ include file="ClientA/clienta-siteheader.html" %> <% } else if (refe

Re: Alternative to using variables in include directive

2000-06-12 Thread Peter White
o using variables in include directive > > > Peter White wrote: > > > Hello, > > > > I'm building a site that includes a dynamic header file based on who the > > visitor was referred by. I'm currently including the header as follows: > > > >