Ask a Question related to Coldfusion Component Development, Design and Development.

  1. #1

    Default cfc htlm links

    In a cfc method that displays html, if there is a link to another method that
    displays html, is the application.cfm reprocessed upon clicking the link or
    does the browser just display what is in the cfc method that was invoked by the
    link. Sorry, I am new to ColdFusion.

    -dave

    cannotFindANickName Guest

  2. Similar Questions and Discussions

    1. JScript (.js) in htlm
      I am new here and trying ot self learned on Dynamic Web design. I am using Dreamweaver for this task. I have a quesrtion concerning the JSCript...
    2. Resetting "Visited" links to "links" color when new browser opens
      HELP! This should be simple, but I can't find info: In using CSS for font color for text hyperlinks, I have mine set so that the "links" are a...
    3. When we move Image Links and HTML links
      On our Local Site (hard drive), our web projects is almost complete and we have already uploaded and sync the internet site (remote site). I have...
    4. ?Hard links, Soft links, & Aliases--Explain
      Hi All, Could some knowledgeable UNIX type please explain the differences between hard links, soft links, and traditional Mac aliases. Responses...
  3. #2

    Default Re: cfc htlm links

    When you say link from the cfc method to another method, do you mean a cfhttp
    call to the other method (which would be kind of weird), if so the app.cfm
    would get processed again. If you are just calling another method
    secondMethod() in the same cfc, then the app.cfm goes once. If you are calling
    another method in a different cfc that you invoke, the app.cfm i'm pretty sure
    only goes once, unless the namespace for the invoked cfc is different. IE
    com.domain.mycfc.method1() makes call to com.domain222.mycfc2.method2()

    byron1021 Guest

  4. #3

    Default Re: cfc htlm links

    Also, just a note on architecture. It's best not to return html from methods,
    unless it's something that is pretty much never going to change. Only thing we
    do like this is select boxes that get populated from the db, maybe a few
    standard forms, like a login, or address form. Usually you just want to return
    data.

    byron1021 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