hi,
I am using <bean:write..../> in <logic:iterate....>
here i am trying to write a data of type int, and othere is Date.
whay it is not printing these data types. and shows me the following error
javax.servlet.jsp.JspException: Cannot find message resources under key org.apac
he.struts.action.MESSAGE
what it means and what i need to do...
Regards,
MaRu
How can i print int , Date type values?
Discussions
Web tier: servlets, JSP, Web frameworks: why <bean:write ...> in <logic:iterate...> is not displaying int
-
why <bean:write ...> in <logic:iterate...> is not displaying int (5 messages)
- Posted by: Maruthi Ram
- Posted on: May 03 2004 07:49 EDT
Threaded Messages (5)
- why <bean:write ...> in <logic:iterate...> is not displaying int by Senthil Chinnaiyan on May 03 2004 08:04 EDT
- why <bean:write ...> in <logic:iterate...> is not displaying int by Maruthi Ram on May 03 2004 23:34 EDT
- why <bean:write ...> in <logic:iterate...> is not displaying int by Maruthi Ram on May 04 2004 00:50 EDT
-
why <bean:write ...> in <logic:iterate...> is not displaying int by Senthil Chinnaiyan on May 04 2004 06:32 EDT
- Thanks a lot by Ranjeet Kumar on October 03 2006 05:34 EDT
-
why <bean:write ...> in <logic:iterate...> is not displaying int by Senthil Chinnaiyan on May 04 2004 06:32 EDT
- why <bean:write ...> in <logic:iterate...> is not displaying int by Maruthi Ram on May 04 2004 00:50 EDT
-
why <bean:write ...> in <logic:iterate...> is not displaying int[ Go to top ]
- Posted by: Senthil Chinnaiyan
- Posted on: May 03 2004 08:04 EDT
- in response to Maruthi Ram
You need to have a type of String to display it.
Thanks,
Senthil. -
why <bean:write ...> in <logic:iterate...> is not displaying int[ Go to top ]
- Posted by: Maruthi Ram
- Posted on: May 03 2004 23:34 EDT
- in response to Maruthi Ram
How can i do that.
for example I have
<bean:write name="valuationHistory" property="price" />
how can i print the value of price..
by using "format" attribute what i need to specify??
Regards,
MaRu. -
why <bean:write ...> in <logic:iterate...> is not displaying int[ Go to top ]
- Posted by: Maruthi Ram
- Posted on: May 04 2004 00:50 EDT
- in response to Maruthi Ram
Similarly how can I display Date using <bean:wirte/> -
why <bean:write ...> in <logic:iterate...> is not displaying int[ Go to top ]
- Posted by: Senthil Chinnaiyan
- Posted on: May 04 2004 18:32 EDT
- in response to Maruthi Ram
Test Float: <bean:write name="formName" format="#.0" property="testFloat" />
Test Date: <bean:write name="formName" format="MM/dd/yyyy" property="testDate" />
Thanks,
Senthil. -
Thanks a lot[ Go to top ]
- Posted by: Ranjeet Kumar
- Posted on: October 03 2006 05:34 EDT
- in response to Senthil Chinnaiyan
hi, i was facing the same problem with the int datatype. this helped me to overcome my problem. thanks for this post. ranjeet barnwal