hi everyone.
i'am a novice VBScript user. sorry for my illiteracy. i am developing a
web site using ASP and VBScript. i'm working on an Access database.
here,
in firstpage.asp i have a combobox. combobox lists names and surnames
of the users which are populated from the database [Server.CreateObject
("ADODB.Connection")]. I show each record's name and surname as one
item of the ComboBox(*). but i have to send the name and surname
information of selected item to nextpage.asp separately.
So, how can i accomplish this?
regards...
* I do this to show them separately:
<SELECT NAME="adsad">
<% Do While Not rec.eof %>
<OPTION VALUE="<%=rec(0)&" "&rec(1)%>"><%=rec(0)&" "&rec(1)%></OPTION>
<%
rec.MoveNext
loop
%>
</SELECT>
but rhere is only one "value" of "option" : [VALUE="<%=rec(0)&"
"&rec(1)%>]