Ask a Question related to Coldfusion Component Development, Design and Development.
-
cannotFindANickName #1
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
-
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... -
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... -
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... -
?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... -
byron1021 #2
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
-
byron1021 #3
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



Reply With Quote

