I think I see what your going for, but would like to have better
requirements.

Try this:

<cfset myLen = listCommiteeMembersRet.recordCount>

<!--- Loop through the records --->
<cfoutput query="listCommiteeMembersRet">
        <input type="hidden" name="EC_ID"
value="#listCommitteeMembersRet.EC_ID#" />
        <tr>
                <td style="width : 200px;">
                        <input type="text" name="Name_#i#" />
                </td>
                <td style="width L 125px;">
                        <input type="text" name="Phone_#i#" value="#Phone#"
/>
                </td>
                <td>
                        <input type="text" name="Email_#i#" value="#Email#"
/>
                </td>
        </tr>
</cfoutput>

<cfif myLen lt 10>
        <cfset loopLen = 10 - myLen>
        <cfloop from="1" to="#loopLen#" index="i">
                <tr>
                <cfoutput>
                        <td style="width : 200px;">
                                        &nbsp;
                        </td>
                    <td style="width : 125px;">
                                <input type="text" name="Phone_#i +
loopLen#" />
                        </td>
                    <td>
                                <input type="text" name="Email_#i +
loopLen#" />
                        </td>
                </cfoutput>
   </tr>        
        </cfloop>
</cfif>

> -----Original Message-----
> From: Bruce Sorge [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 21, 2006 3:33 PM
> To: CF-Talk
> Subject: Is there a better way to do this
> 
> First I would like to thank those of you who replied to my session time
> out
> issue without being condescending. I still am amazed that I actually
> posted
> that question and I feel totally stupid. LOL




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264807
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to