sean, using the cfimport taglib, my tags are in folders like so:
tags/accounts/tag1.cfm tags/accounts/part/tag2.cfm tags/checkout/tag3.cfm
On one page i use all three tags, will i have to do three seperate
imports, or is there a way of doing one import, and using dot notation to
reference each tag
You would need to do three imports: <cfimport taglib="/tags/accounts/" prefix="accounts"/> <cfimport taglib="/tags/accounts/part/" prefix="accountsPart"/> <cfimport taglib="/tags/checkout/" prefix="checkout"/> ... <accounts:tag1 .../> <accountsPart:tag2 .../> <checkout:tag3 .../>
Sean A Corfield -- http://www.corfield.org/blog/
"SOAP is not so much a means of transmitting data but a mechanism for calling COM objects over the Web."
-- not Microsoft (surprisingly!)
--- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
