This is not correct.

I believe that you would do it like this:

<CFMODULE  Template=Comments.cfm Action=Comments1 CommentID = 
#findContent.entryID#>

Also, you can call a custom tag by using CF_ and  setting attributes:

On the comments.cfm page, set some attributes like this:

<cfparam name="Attributes.Action" type="String">
<cfparam name="Attributes.CommentID" Type="Integer">



<cfoutput>
#Attributes.Action#
#Attributes.CommentID#
</cfoutput>

On the calling page, use this:

<cf_Comments Action="comments1" CommentID="#findContent.entryID#>

I believe that will work although I did not test it.

Bruce

Adam Parker wrote:
> Using
> <cfmodule 
> template="comments.cfm?action=comments1&commentID=#findContent.entryID#" />
> results in an invalid argument error again.  With this method, there is no 
> need to declare
> <cfset url.action = "comments1"> 
> <cfset url.commentID = "findContent.entryID">
> correct? 
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:3080
Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to