-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.cfm
30 lines (25 loc) · 848 Bytes
/
results.cfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<cfparam name="CALLER.showCF10" default="true">
<cfparam name="CALLER.showCF9" default="false">
<cfparam name="CALLER.showRailo" default="false">
<cfparam name="attributes.test" default="">
<cfparam name="attributes.reload" default="false">
<cfoutput>
<cfif CALLER.showRailo>
<article>
<h3>Results - Railo</h3>
<iframe src='#CALLER.RAILOURL#index.cfm?test=#attributes.test#&reload=#reload#'></iframe>
</article>
</cfif>
<cfif CALLER.showCF10>
<article>
<h3>Results - ColdFusion 10</h3>
<iframe src='#CALLER.CF10URL#index.cfm?test=#attributes.test#&reload=#reload#'></iframe>
</article>
</cfif>
<cfif CALLER.showCF9>
<article>
<h3>Results - ColdFusion 9</h3>
<iframe src='#CALLER.CF9URL#index.cfm?test=#attributes.test#&reload=#reload#'></iframe>
</article>
</cfif>
</cfoutput>