Question
CFM pages are not processing
Hello,
I just installed CF MX 70 server Developer edition, and when I view a .cfm file, I only see the HTML code. It is not processing what is in my <CF> brackets... for instance this .CFM code:
<!------- query sewer pipes information by selection -------->
<CFQUERY NAME="pipe_info" DBTYPE="ODBC" DATASOURCE="HixRub_Access">
SELECT FeatID, TITLE, STATUS
FROM ProjectSites
WHERE FeatID = '1'
</CFQUERY>
<cfoutput query="pipe_info">
<TABLE bgcolor="000099" align="center" width="244" height=345 border="0" cellspacing="1" cellpadding="0">
<TR>
<TD align="center" bgcolor="9999CC"><font class="sub1">FeatID</font></TD>
<TD align="left" bgcolor="FFFFFF"><font class="sub2">#FeatID#</font></TD>
</TR>
<TR>
<TD align="center" bgcolor="9999CC"><font class="sub1">TITLE</font></TD>
<TD align="left" bgcolor="FFFFFF"><font class="sub2">#Title#</font></TD>
</TR>
<TR>
<TD align="center" bgcolor="9999CC"><font class="sub1">STATUS</font></TD>
<TD align="left" bgcolor="FFFFFF"><font class="sub2">#STATUS#</font></TD>
</TR>
</TABLE>
</cfoutput>
...reads in my IE browser as this:
SELECT FeatID, TITLE, STATUS FROM ProjectSites WHERE FeatID = '1'
FeatID #FeatID#
TITLE #Title#
STATUS #STATUS#
I don't remember having to configure my IIS 5.0 web server after installation. Has this changed? Pleasehelp.
Thank you,
Jason
I just installed CF MX 70 server Developer edition, and when I view a .cfm file, I only see the HTML code. It is not processing what is in my <CF> brackets... for instance this .CFM code:
<!------- query sewer pipes information by selection -------->
<CFQUERY NAME="pipe_info" DBTYPE="ODBC" DATASOURCE="HixRub_Access">
SELECT FeatID, TITLE, STATUS
FROM ProjectSites
WHERE FeatID = '1'
</CFQUERY>
<cfoutput query="pipe_info">
<TABLE bgcolor="000099" align="center" width="244" height=345 border="0" cellspacing="1" cellpadding="0">
<TR>
<TD align="center" bgcolor="9999CC"><font class="sub1">FeatID</font></TD>
<TD align="left" bgcolor="FFFFFF"><font class="sub2">#FeatID#</font></TD>
</TR>
<TR>
<TD align="center" bgcolor="9999CC"><font class="sub1">TITLE</font></TD>
<TD align="left" bgcolor="FFFFFF"><font class="sub2">#Title#</font></TD>
</TR>
<TR>
<TD align="center" bgcolor="9999CC"><font class="sub1">STATUS</font></TD>
<TD align="left" bgcolor="FFFFFF"><font class="sub2">#STATUS#</font></TD>
</TR>
</TABLE>
</cfoutput>
...reads in my IE browser as this:
SELECT FeatID, TITLE, STATUS FROM ProjectSites WHERE FeatID = '1'
FeatID #FeatID#
TITLE #Title#
STATUS #STATUS#
I don't remember having to configure my IIS 5.0 web server after installation. Has this changed? Pleasehelp.
Thank you,
Jason