i want to use a jsp page, which connects to DB and retrieves info from it(say lastname).the retrieved info should be inserted into COMBOBOX
Please tell how can one do it!
Hi ,
I dont know whether u r using any framework or following any architecture. If u r not using any framework or CustomTags , u can adapt the procedure given below.
If u have a collection or an array of objects iterate them using a loop and add these values to a combobox.
You can write a Scriplet to do this.
for wg:- if you have an array names of size 10 i.e., names[10] then u can iterate u r array in this way
<%
for(int i=0,n=names.length[];i
%>
<%
}
%>
Last edited by pramod.reddy; 03-19-2007 at 05:04 AM.
thanks pramod!Though i got the solution that day itself, i forgot to write here!
But still too much thanks! Hope you will help me in other problems too(as i come across)!