|
Basically I want to use a query string to determine which template is loaded.
Currently there are only two options, default (null or 0) and ireland(1). In the future we would like to add more to this, so I want to leave room for expansion.
Currently this is what I have, but it doesn't work.
<%
RegID = Request.QueryString("RegID")
if RegID = 1 then
%>
<!--#include virtual="/template/template_top_ireland.asp"-->
<%
else
%>
<!--#include virtual="/template/template_top.asp"-->
<%
end if
%>
|