Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I write a cfc in ColdFusion 8, in the source code ColdFusion shows these comments:

<!-- application.cfm BEGIN -->
..
<!-- app_include.cfm BEGIN -->
..    
<!-- app_include.cfm END --> <!-- BEGIN variableDeclarations.cfm -->
...
<!-- END variableDeclarations.cfm  OR #request.directory# contains "storeworks"-->
...
<!-- application.cfm END -->

But I did not write anything, only a function:

<cfcomponent Hint = "Test" displayname="Test" output="true">
  <cffunction name="GetProducts" returnformat="json" output="false" access="remote">

    <cfquery name="getMenu" dbtype="query" datasource="#request.dsn#">
    select * from Grades ORDER BY gradeID ASC
    </cfquery>

    <cfreturn getMenu />
  </cffunction>
</cfcomponent>

How do I delete the comments, or how do I not show the comments?

share|improve this question
I think you'll have to give us much more detail here. I don't see any comments in the code you posted, just a query and a return statement. I would like to give you a few pointers though, make sure that getMenu is var scoped in the beginning of the function, and I'd also set the columns you are trying to select instead of * in your select statement. – bittersweetryan Jul 22 '11 at 15:41

3 Answers

If you don't want to show up comments in your HTML source you have to use ColdFusion comments instead of HTML comments.

<!--- ColdFusion comments do not show up in source, they are ignored  --->

<!-- HTML comment can be viewed with view source -->
share|improve this answer
+1 - three dashes for the win! – Nate Jul 22 '11 at 21:34

It looks like those comments have been put into the Application.cfm file which runs on every request.

As Andreas has already said, if you change those comments to use 3 dashes instead of 2 dashes then they won't appear in the HTML source code.

share|improve this answer

You can add output=false to the <cffunction tag to suppress any output from the function itself. This will work if all you need is the returned query.

<cffunction name="getMenu" output="false">
  <cfset var getMenu = "">
  <cfquery name="getMenu" dbtype="query" datasource="#request.dsn#">
  select * from Grades ORDER BY gradeID ASC
  </cfquery>

  <cfreturn getMenu />
</cffunction>
share|improve this answer
With the updated information you added to your question, Adreas' answer is correct – Yisroel Jul 22 '11 at 16:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.