Hi newbie here
Ok here is my situation I have a listbox that is dynamicly populated from a database,and I have a textarea. I want the user to select a value from the listbox and by so to populate the textarea with the text in the database according to the value of the listbox but without submiting
Here is a bit of my code.
Thanx in advance
<INPUT size=19 name="Newservice"><BR><FONT color=crimson>Existing
Service</FONT>
<BR> <SELECT name=service >
<OPTION selected><%while not objserv.EOF%>
<option value=<%=objserv("Service_Name"
%>>
<%=objserv.Fields("Service_Name"
%>
<%
objserv.MoveNext
wend
objserv.Close
set objserv=nothing %>
</OPTION>
</SELECT></P></TD>
<TD></TD>
<TD ><TEXTAREA name=ServiceText rows=1 cols=27></TEXTAREA></TD></TR>
Ok here is my situation I have a listbox that is dynamicly populated from a database,and I have a textarea. I want the user to select a value from the listbox and by so to populate the textarea with the text in the database according to the value of the listbox but without submiting
Here is a bit of my code.
Thanx in advance
<INPUT size=19 name="Newservice"><BR><FONT color=crimson>Existing
Service</FONT>
<BR> <SELECT name=service >
<OPTION selected><%while not objserv.EOF%>
<option value=<%=objserv("Service_Name"
<%=objserv.Fields("Service_Name"
<%
objserv.MoveNext
wend
objserv.Close
set objserv=nothing %>
</OPTION>
</SELECT></P></TD>
<TD></TD>
<TD ><TEXTAREA name=ServiceText rows=1 cols=27></TEXTAREA></TD></TR>