Hi Lorena

> Can anybody tell me which function could to convert a variable from int to
> String on a JSP page.

If you're just printing the variable out, then you don't have to, just do:
blah, text blah <%= intVariable %> more text blah

And this will work, but if you want to convert the int to a String and
then process it, use the toString method of Integer, eg:
String stringVariable= Integer.toString(intVariable);

HTH,
Raj.

--------------------------
Rajnish Bhaskar
[EMAIL PROTECTED], http://i.am/rajy
IT Education Unit, University of Glasgow
http://www.iteu.gla.ac.uk/
--
Only buffoons refer to the Internet as the Information Superhighway.
     -- (The Rough Guide to the Internet 1999)

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to