i am trying to build a page with two drop down lists. one with user ids,
pulling the list of ids from form variables. the other lists is projects, also
pulling values from form variables.
how should i go about populating the drop down boxes with the desired info. as
stated above.
any suggestions would help.
Either of these methods should work.
<select name="UserID" id="UserID">
<cfoutput query="rsUsers">
<option value="#rsUsers.UserID#">#rsUsers.UserName#</option>
</cfoutput>
</select>
<cfselect
name="ProjectID"
id="ProjectID"
query="rsProjects"
value="ProjectID"
display="ProjectName">
</cfselect>

Signature
Ken Ford
PVII Support Team
http://www.projectseven.com
Team Macromedia Volunteer - Dreamweaver
Certified Dreamweaver MX 2004 Developer
>i am trying to build a page with two drop down lists. one with user ids,
> pulling the list of ids from form variables. the other lists is projects, also
[quoted text clipped - 4 lines]
>
> any suggestions would help.