Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
ismaguen #1
CFX or JAVA Custom TAGS ?
Hello, I would like to know which type of custom tags are easier and faster to use in my ColdFusion pages, CFX tags ? Or java custom tags ?
Thanks a lot for your answers.
ismaguen
ismaguen Guest
-
Custom tags that are not angle brackets
I was wondering if it is possible to create a tag library that uses tags with square brackets rather than angled ones. Can anyone give me any help... -
Custom Tags
Is it possible to customize the behavior of standard tags? I would like my application to perform a few extra steps prior to the execution of... -
using CFML custom tags in JSP Files
Hello, I am trying to do a hybrid project using CFML and JSP and i would like to know if there is a way to use CFML custom tags in JSP pages. I... -
Custom Tags - Path problem
Hi all, I am having problem with Custom tags path. In the coldfusion server(5.0) I have added the path C:\CFusion\CustomTags for all my custom... -
custom tags in Design Window
have(in code): <ns:input type="text" name="name" value="30" /> want see in design window like <input type="text" name="name" value="30" > ... -
Stressed_Simon #2
Re: CFX or JAVA Custom TAGS ?
Custom Tags come it two types. You standard custom tag that is called by using
the following syntax <cf_tagName>, then you have CFX tags which are called by
using <cfx_tagName>.
Custom tags are written in cfml and should mainly be used for visual elements
as CFCs are better of business loic.
CFX tags are written in either Java or C++ and are used to extend your
applications beyond what is achievable with cfml alone.
As for which is fastest that mainly comes down to what you are trying to do.
Stressed_Simon Guest
-
ismaguen #3
Re: CFX or JAVA Custom TAGS ?
We can also use real JAVA/JSP custom tags with a tld file ...
But what i would like to know is: if we try to do big handlings with custom
tags like database queries, witch one can be faster to treat my request? the
JAVA/JSP custom tag or the java CFX tag ?
ismaguen Guest



Reply With Quote

