How to use CFwindow in ColdFusion

cfwindow

cfwindow.cfm


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfwindow tag: how to use cfwindow in coldfusion</title>
</head>

<body>
<h2 style="color:DodgerBlue; font-style:italic">cfwindow tag example: how to use</h2>
<hr width="400" align="left" color="CadetBlue" />
<br />

<cfwindow 
 name="FlowerWindow" 
    title="Flower Image" 
    initshow="true" 
    modal="false" 
    resizable="false"
    height="450" 
    width="550"
    >
 <img src="Images/Flowers.gif"/>
</cfwindow>

</body>
</html>





More ColdFusion examples