Posted By:
borra_BOSU
Posted On:
Sunday, October 29, 2006 07:01 AM
i have two jsps first.jsp,sec.jsp in first.jsp i am getting my existed members id's,names,address here my code is like this String query="select customer_id,customer_name,customer_address from mst_customer; i am getting those values in to Arraylist like this ArrayList al=du.displayRecords(query); and then my code is like this String temp[]; String action="editinfo.jsp?id="; for(int i=0;i { out.println(" "); temp=(String[])al.get(i); for(int j=0;j { out.println(" "+temp[j]+" "); } out.println(" "); temp=null;
More>>
i have two jsps first.jsp,sec.jsp
in first.jsp i am getting my existed members id's,names,address
here my code is like this
String query="select customer_id,customer_name,customer_address from mst_customer;
i am getting those values in to Arraylist like this
ArrayList al=du.displayRecords(query);
and then my code is like this
String temp[];
String action="editinfo.jsp?id=";
for(int i=0;i
{
out.println("
");
temp=(String[])al.get(i);
for(int j=0;j
{
out.println("
"+temp[j]+"
");
}
out.println("
");
temp=null;
}
from here when my user clicks somepersons id then those corresponding person id,name,addres are to be displayed
in my sec.jsp
plz provide answer as early as possible.
Please use html tags to format code blocks.
<<Less