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!!!