See I am using this logic iterate tag with offset.
According to link
http://j2ee.masslight.com/Chapter5.html it says..
offset the value, expressed as an integer or as a java.lang.Integer, of where the iterator tag begins the iteration of the collection - the default value is zero.
Now my problem is..
I am extracting an object obj( made from Integer wrapper )from request.And from toString method I am coverting object to string in a jsp file.If I try to insert the int converted value in offset,it throws an error saying it requires string,and when i directly assign string...it works but it doesn't go to index were it should go and neither it iterates sequentially.
what I do?