Hey all,
I have an app that uses an iFrame to edit content, and has a number of different templates. What I want to be able to do is select which template I can use at any time (i.e. a set of radio buttons or so forth). I tried it using a form with the processing being:
<%
If request.form "template" = "template1" then
strTemplate = "template1.htm"
Else
strTemplate = "template.htm"
If request.from "template" = "template2" then
strTemplate = "template2.htm"
Else
strTemplate = "template.htm"
End If
End If
%>
Any ideas??