>
> Position=(int) request.getParameterValues("Position") + 1;

you can try Position =
Integer.valueOf(request.getParameterValues("Position")).intValue();

in theory Integer("string") should give ya Integer, which you can later use
Integer.intValue(), however for me Integer("13").intValue() didn't work, so
i use with the valueOf

AndySoft

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to