hi all.i am trying to use a variable(an arraylist) which exists in
java file(taskcompletion.java).i declared the variaable on java side like this:
public static List<
String> yeniler = new ArrayList<String>(1000);
then i would like to use this variable in
jsp page like this:
<dmf:label label="<%=form.yeniler.get(i)%>" />
but it gives an java.lang.IndexOutOfBoundsException size:0
how can i initialize the list before page use it?
Best Regards.