I am learning WAP and I am working on building a simple application. When I view the application on the Phone Simulator, I can read the text written in the page, however, anything "Coldfusion" specified within the "<cfoutput></cfoutput>" tags does not display as expected.
Example:
The following Coldfusion function does not work, it just displays in the simulator as is.
#dateformat(now(), "mmmm dd, yyyy"
#
Any recommendations? Thanks in advance!!!
Here is the code I am using:
<CFCONTENT TYPE="text/vnd.wap.wml">
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//PHONE.COM//DTD WML 1.1//EN" " >
<wml>
<card id="home">
<p>
Company Name<br />
<cfoutput>
#dateformat(now(), "mmmm dd, yyyy"
#
</cfoutput><br />
<a href="#about">About Us</a><br />
<a href="#news">News</a><br />
<a href="Products.cfm">Products</a><br />
</p>
</card>
<card id="about">
<p>
About Us<br />
About Us Statement Here
</p>
</card>
<card id="news">
<p>
NEWS<br />
Company News here
</p>
</card>
</wml>
Example:
The following Coldfusion function does not work, it just displays in the simulator as is.
#dateformat(now(), "mmmm dd, yyyy"

Any recommendations? Thanks in advance!!!
Here is the code I am using:
<CFCONTENT TYPE="text/vnd.wap.wml">
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//PHONE.COM//DTD WML 1.1//EN" " >
<wml>
<card id="home">
<p>
Company Name<br />
<cfoutput>
#dateformat(now(), "mmmm dd, yyyy"

</cfoutput><br />
<a href="#about">About Us</a><br />
<a href="#news">News</a><br />
<a href="Products.cfm">Products</a><br />
</p>
</card>
<card id="about">
<p>
About Us<br />
About Us Statement Here
</p>
</card>
<card id="news">
<p>
NEWS<br />
Company News here
</p>
</card>
</wml>