Skip to main content
Known Participant
May 23, 2014
질문

Is anyone monitoring or answering questions on this forum?

  • May 23, 2014
  • 1 답변
  • 601 조회

I have seen several questions unanswered.

이 주제는 답변이 닫혔습니다.

1 답변

Carl Von Stetten
Legend
May 23, 2014

Yes, people are answering questions.  Keep in mind that many of the recent questions in this part of the forum have been about CFBuilder 3, which was only released a few weeks ago.  So not many people are using it yet and can provide constructive answers to the questions posted.

Do you have a specific question that hasn't been answered?

-Carl V.

alberto10s작성자
Known Participant
May 23, 2014

Thanks Carl, fair enough. Appreciate the quick response.  I pasted the post below.

CFBuilder 3 syntax coloring is not working for nested tags, why did I miss?

This question is Not Answered.(Mark as assumed answered)

Alberto GentyCommunity Member

In the example below, the <cfclient> tags are red, but not for the <cfinclude> tag.

<cfclient>

  <!--- All cfclient code to creat dynamic HTML and

  interface with data access CFC is in the following included file --->

  <cfinclude template="index_include.cfm" >

</cfclient>

Similarly, the <html> tags are blue, but not the <head> tags

<html>

  <head>

  <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css" ></link>

  <script src="js/jquery-2.1.0.min.js" ></script>

  <script src="js/app.js"></script>

  <script src="js/jquery.mobile-1.4.2.min.js" ></script>

  <style >

  table th {

  text-align:left;

  }

  </style>

  </head>

</html>