• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Dynamic messages

 
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have a question. I have got to display dynamic messages at run time based on the result of a query.

E.g
Suppose on one condition I need to display the following

0 days
On some other condition I many need to display the following

68 days

As the error message changes (only the digits part) to any random number I cannot hard code this message in the Resource Bundle.

One more constraint is that my I need to do this from my action class.

Iam using Struts 1.3.8 . Is it anyway possible ?

If so a small example code snippet would be realy helpful.

Cheers
Anirban
 
Ranch Hand
Posts: 190
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Store it in a database
 
Anirban Das
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Chris
 
Ranch Hand
Posts: 948
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What exactly is it that you are trying to do? Your phrase "display dynamic messages at run time based on the result of a query" can pretty much apply to any dynamic web application. I have to guess that you are doing something more than just displaying the phrase "Hello Brent" on a screen.

- Brent
 
reply
    Bookmark Topic Watch Topic
  • New Topic