setAttribuve vs setValue

2002-07-17 Thread Manuel Rodriguez Diaz
Which is the difference between setAttribute and setValue? Are both the same? === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST

Re: setAttribuve vs setValue

2002-07-17 Thread Manuel Rodriguez Diaz
question a little bit? -Original Message- From: Manuel Rodriguez Diaz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 1:53 PM To: [EMAIL PROTECTED] Subject: setAttribuve vs setValue Which is the difference between setAttribute and setValue? Are both the same

Stupid thing

2002-07-05 Thread Manuel Rodriguez Diaz
Hi, this is a really stupid thing (maybe off-topic). I've got a double value (355.783.022,00) and i want to show it like is. But Java shows it like 3.55783022E8. I've tried to format it using the following class: import java.text.DecimalFormat; import java.lang.*; import java.util.Locale; import

Re: Problemas con la recursividad

2002-07-03 Thread Manuel Rodriguez Diaz
Thankyou everybody. Mr Bhangale, I finally understood what was happen with my JSP page and its transformation into a servlet with just one method called service(). I tried the suggestion of you all and it worked, although i wrote the code like this (please, let me know wether it is a good

Application attributes

2002-07-03 Thread Manuel Rodriguez Diaz
I want to put some values into the application object but i don´t want to put them with code. ¿Is there any way to make Tomcat to load this attributes from a file like web.xml at startup? === To unsubscribe: mailto [EMAIL

Problemas con la recursividad

2002-07-02 Thread Manuel Rodriguez Diaz
Hi, I have write a function inside the %! % tags of a JSP page that is called recursivelly. The fact is that i'm not able to access implicit JSP objects like session or out. ¿Is that true or am i doing something wrong? ¿How can i bypass this problem? Thankyou