ColdFusion Custom Tags

Is there anyway for me to setup custom tags that I've written myself.

I use custom tags for creating reusable code and use them essentially as a user-defined function.

What is JodoHost's policy on this?

Thanks,

Jeremy
 
JereBear said:
Is there anyway for me to setup custom tags that I've written myself.

I use custom tags for creating reusable code and use them essentially as a user-defined function.

What is JodoHost's policy on this?

Thanks,

Jeremy
Are they stand-alone DLL's (CFX tags) or simply CF_ calls and .CFC files?

The DLL's would probably need to be tested by the folks at JodoHost, however UDF's, CF_ (standard custom tags) and CFC's are completely allowed.

The only trick is that you don't have access to load your custom tags into the host's main custom tag directory. However, you can either place the files in the directory of the calling template or higher up in the tree. Alternately you could use the CFModule tag.
 
They are not dlls or cfx tags. Just some standard tags that I wrote. I didnt know that you could simply place them in your directory and use the cf_ syntax. That works perfectly. Thanks, Jeremy
 
Back
Top