Does ColdFusion automatically generate the basic HTML tags like:
<HTML> <head></head> <body></body> </HTML>
Or do you have to include that in your source code like ASP or PHP?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I personally would not want ColdFusion to include those tags, as I am not always outputting HTML.
Also, unlike PHP, there is no
<?coldfusion>tag, or anything similar that you use to declare that CF should process your code. All ColdFusion tags are prefixed with ‘cf’, and can be interspersed with regular HTML code. Keep in mind that in order to render output to the page, you must use the ‘<cfoutput>‘ tag. ie.