RicardoPereira
Programmer
I have a form that is builded dynamically (the code is generated by an database access). When i submit the form i want to request the parameters using the database too.
Assuming that if i have a table with these two values:
String x = request.getParameter("a"
;
String y = request.getParameter("b"
;
How do i build the code to run this in my jsp page?
I start to do:
Arraylist ...
..
out.println(qry.getTest());
But what i see is the text
String x = request.getParameter("a"
;
String y = request.getParameter("b"
;
I dont whant the text, what i want is the code running.
Anyone could help?
Thanks
Ricardo
Assuming that if i have a table with these two values:
String x = request.getParameter("a"
String y = request.getParameter("b"
How do i build the code to run this in my jsp page?
I start to do:
Arraylist ...
..
out.println(qry.getTest());
But what i see is the text
String x = request.getParameter("a"
String y = request.getParameter("b"
I dont whant the text, what i want is the code running.
Anyone could help?
Thanks
Ricardo