Hi,
I have written a
jsp which accepts n number of paired values i.e
"labelname and labelvalue"
Now, to catch these values I have written another jsp as follows
Problem is that instead of giving me the output in order like
label0 'a'
labelval0 '40'
label1 'b'
labelval1 '50' etc etc
its giving me
label0 'a'
labelval1 '50'
labelval0 '40'
label1 'b'
I need the values in order because I have to use them for formation of a
string. Since, the outputs are random in order...I m facing difficulty.