Query in data population using select in jsp
Posted
by sarah
on Stack Overflow
See other posts from Stack Overflow
or by sarah
Published on 2010-04-06T10:57:16Z
Indexed on
2010/04/06
11:03 UTC
Read the original article
Hit count: 150
I am populating data using
<select name="test">
<option value='<%=session.getAttribute("tList")%>'><%=session.getAttribute("tList") %></option>
</select>
but the values are getting display in a single row in the combo box not row wise,where i am going wrong ?
© Stack Overflow or respective owner