| Author |
Jsp:param
|
Sarah Gaikwad
Ranch Hand
Joined: Feb 26, 2004
Posts: 35
|
|
This code is in page a.jsp <% String collistnames[]= {"Verified","Not Verified","All"}; %> <jsp:include page="b.jsp"> <jsp aram name="collistnames" value="<%=collistnames%>"/> </jsp:include> This is in b.jsp <% String lists =request.getParameterValues("collistnames"); %> I am not able to get the result that i need i do not get the array conatining the values. Help!!!
|
 |
Kalai Selvan
Ranch Hand
Joined: Jul 07, 2004
Posts: 79
|
|
Hi, Make the above changes to your code it will work. It is not possible to send array along with request parameter.
|
 |
siva krishnan
Greenhorn
Joined: Apr 26, 2003
Posts: 21
|
posted

0
|
Hi Kalai, But if we aren't sure about the size of the array, i.e. array values/size is got only at run-time...how do we handle it ?
|
Cheers<br />Siva<br />SCJP 1.4<br />SCWCD 1.3
|
 |
Kalai Selvan
Ranch Hand
Joined: Jul 07, 2004
Posts: 79
|
|
Hi, For such situations you can do the following......
|
 |
 |
|
|
subject: Jsp:param
|
|
|