ColdFusion form and input tags not displaying.
I recently installed ColdFusion 9 Developer edition and installed it on my laptop. I tried creating a simple form and seeing if I could get it to show up but nothing happens. I also tried this with my web host who supports ColdFusion and nothing. Anyone know what I am doing wrong? I've used ColdFusion b4 and even my old code won't work? Perhaps there is something I am missing for the newer ColdFusion?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CF Test</title>
</head>
<body>
<cfoutput>
<cfform action="cftest.cfm" method="get">
<cfinput type="text" name="FileFilter" size="80" value="Shwa" class="textfield">
</cfform>
</cfoutput>
</body>
</html>
