I don't know if you noticed this or not, but your maxrows says: Maxrows=2Repeat1_NumRows#>
I wouldn't expect that to work, but if it is working, it might explain why you are getting 2. Dave -----Original Message----- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 7:23 PM To: cf-newbie Subject: RE: # of lines Tag? If you really have: <cfoutput query="Recordset1" startrow=#Repeat1_StartRow# maxrows=2Repeat1_NumRows#> then start by sorting the formatting out: <cfoutput query="Recordset1" startrow="#Repeat1_StartRow#" maxrows="#Repeat1_NumRows#"> Does that fix it? If not, output Repeat1_StartRow and Repeat1_NumRows and see if they're the values you think they are. Adrian Building a database of ColdFusion errors at http://cferror.org/ -----Original Message----- From: Jen Thomas Sent: 22 October 2008 21:54 To: cf-newbie Subject: Re: # of lines Tag? <cfoutput query="Recordset1" startrow=#Repeat1_StartRow# maxrows=2Repeat1_NumRows#> <cfoutput query="Recordset1" startrow=#Repeat1_StartRow# maxrows=2Repeat1_NumRows#> </cfoutput> I have max rows set to 2. Is there something I am missing here? Eric Nicholas Sweeney wrote: > I am not sure I am following you - Do you mean in a Loop? In a query? > > <cfloop query="yourQRY" StartRow="1" ENDROW="10"> > > Or - > > <cfoutput query="yourQRY" maxrows="10"> > > Is that what you mean? > > Otherwise, it will output the entire query results... > > - N ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4076 Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
