Include template problem

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Include template problem

    I have problems with <cfinclude template="">. It works fine when I dont use
    <table> in the doc, but if I want to include to <cfforms> one of them doesn't
    show.

    <table>
    <tr>
    <td><cfinclude template="flash_tree.cfm"></td><td><include
    template="something.cfm"></td>
    </tr>
    </table>

    This doesn't work. Need some help :brokenheart;

    Storelv Guest

  2. Similar Questions and Discussions

    1. Using cfset to maintain an include template
      Hello all. I am currently working on a project that uses the following code on the default site page to point a visitor to a specific landing...
    2. CF Include Problem
      All, I'm using CF inludes for my website, and they all have images in them. The only way I can get the images to show up in the browser is by...
    3. problem with INCLUDE
      Hi! I have a problem... I did a PHP Script for a counter... and I want the counter to be displayed on an another PHP page... So, I can...
    4. [PHP] Problem with include();
      Hello, It's often said that includes should have relative paths instead of absolute paths. This ensures that your script still works when you move...
    5. Server Side Include Inside Template?
      Hi Johnny sort of. The include pulls in an htm file that has a table of rollover buttons in it. When I do a DW preview (F12), the code is...
  3. #2

    Default Re: Include template problem

    should not be a problem... example below of client page and works great...

    </tr>
    <cfif showpg.tblID2 GT 1>
    <tr>
    <td width="1%">&nbsp;</td>
    <td colspan="3">
    &nbsp;<br>
    <cfset tblID = #showpg.tblID2#>
    <cfinclude template="tbl_showz.cfm">
    </td>
    </tr>
    </cfif>
    <tr>

    ranger Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139