Move the cfoutput to AFTER the header row, like below. To display a rowcounter use #currentRow# (inside the cfoutput of course)
> <table id="tbl_people"> > <tbody> > <tr> > <th scope="col"></th> > <th scope="col">Person</th> > <th scope="col">Discipline</th> > <th scope="col" width="132">Phone</th> > <th scope="col">E-mail</th> > </tr> > <cfoutput query="getMember"> > <tr> > <td> #currentRow# ></td> > <td><h3>#firstName# <cfif Trim(middleName) is >"">#lastName#<cfelse>#middleName# #lastName#</cfif></h3> > <p>#office#</p> > <ul> > <li><h4>#title#</h4></li> > </ul> > </td> > <td>#discipline#</td> > <td>#phone#</td> > <td><a href="mailto:#netid#>#netid#</a></td> > </tr> ></cfoutput> > </tbody> > </table> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive: http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:3124 Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
