Hmm... There's nothing particularly weird about your tag... Are you literally doing <cfdump var="#attributes#"> and not seeing the value?
Also, what version of CF, is there a closing cfmodule tag and are you using any isolation in your module itself? You can isolate your cfmodule code by checking for which part of the cfmodule tag has been called like so <cfif THISTAG.ExecutionMode IS "Start"></cfif> Anything inside this CFIF would get executed when the CF processor hits the opening cfmodule tag <cfif THISTAG.ExecutionMode IS "End"></cfif> Anything inside this CFIF would only get executed IF and WHEN CF processed a closing tag or if the opening cfmodule tag was self closed <cfmodule /> Just as a baseline, add some other random attribute to the cfmodule, like foo=9 to see if it's making it through. On Tue, Jul 24, 2012 at 2:43 PM, Eric Roberts < [email protected]> wrote: > > <cfmodule > template="#application.paths.includes#/meeting/MeetingFunctions.cfm" > action="GetSingle" > mode="full" > meetingID="#variables.meetingID#" > clientID="#variables.clientID#" > r_stMeeting="stMeeting"> > > > ClientID doesn't come across as an attribute... > > I do see the other attributes and they have the expected values. > > Eric Roberts > Owner/Developer > Three Ravens Consulting > [email protected] > http://www.threeravensconsulting.com > tel: > 630-881-1515 > > > > > > > > > -----Original Message----- > From: Alan Rother [mailto:[email protected]] > Sent: Tuesday, July 24, 2012 4:25 PM > To: cf-talk > Subject: Re: simple question...cfmodule > > > Hey Eric, > > You shouldnt need to restart - can you show us the code you're using? > > -- > Alan Rother > Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org > Twitter: @AlanRother > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351984 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

