Kelly Olson wrote:
> I have a Select list which is pulling records from an access database.
> What I am trying to accomplish is display a SELECT BELOW option as the
> first item in the list.
> The way I have done it so far is to make a first record in the actuall
> database of select below. Then
> when it displays it it there.( crude but effective )
Place an additional <OPTION> before you output the results of your query. Something
like
this:
<SELECT NAME="MySelectList">
<OPTION>-- Make Your Selection --
<CFOUTPUT QUERY="MyQuery">
<OPTION>#MyQuery.ColumnName#
</CFOUTPUT>
</SELECT>
Gene Kraybill
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.