In general no, however to do so you would have to combine the value into one, then on the page
receiving the value you would have to split the value back into individual values. But in order to
split the values, both values must always be a set number of characters.
<select NAME="ClassID" SIZE="1"><option
VALUE="<%=FP_FieldHTML(fp_rs,"ID")%><%=FP_FieldHTML(fp_rs,"Date")%>"><%=FP_FieldHTML(fp_rs,"Class")%
><%=FP_FieldHTML(fp_rs,"Date")%></option></select>
Next page
Dim ClassID1
ClassID1 = Request.Form("ClassID")
ID = Left(ClassID1,6)
Date = Right(ClassID,8)
Note: Date is a reserved word, rename your field.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"Dave" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> I have a dropdown that I want the user to see information side by side. I
> have created that. When the user selects the appropriate information ID is
> passed. Can the dropdown pass 2 values with a single selection? The
> dropdown is populated from database records.
>
> <select NAME="ClassID" SIZE="1"><option
> VALUE="<%=FP_FieldHTML(fp_rs,"ID")%>"><%=FP_FieldHTML(fp_rs,"Class")%<%=FP_F
> ieldHTML(fp_rs,"Date")%></option></select>
>
> Thanks
>
> Dave
>
>