RE: [OT] Re: Iterate through blah.properties file

2005-03-30 Thread Fogleson, Allen
ruts Users Mailing List Subject: RE: [OT] Re: Iterate through blah.properties file Actually it doesn't matter whether it's a servlet or a jsp. A JSP is a servlet after all. Now granted this is way off topic, and I would be like wendy and do it in an action then put the properties (or s

RE: [OT] Re: Iterate through blah.properties file

2005-03-30 Thread Brian McGovern
iling List Subject: RE: [OT] Re: Iterate through blah.properties file Actually it doesn't matter whether it's a servlet or a jsp. A JSP is a servlet after all. Now granted this is way off topic, and I would be like wendy and do it in an action then put the properties (or some other collect

RE: [OT] Re: Iterate through blah.properties file

2005-03-30 Thread Fogleson, Allen
(String)e.nextElement(); String val = props.getProperty(key); %> <%= key %> <%= val %> <% } %> -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 30, 2005 4:29 PM To: Struts Users Mailing List Subj

Re: [OT] Re: Iterate through blah.properties file

2005-03-30 Thread Wendy Smoak
From: "Brian McGovern" <[EMAIL PROTECTED]> > Thanks. I figured I know I can get it to work in servlet code but im hoping to avoid that. > I know that single properties are made available by the framework in taglibs like this key="error.application_error" />. Ther has to be a simple way to just ge

RE: [OT] Re: Iterate through blah.properties file

2005-03-30 Thread Brian McGovern
Thanks. I figured I know I can get it to work in servlet code but im hoping to avoid that. I know that single properties are made available by the framework in taglibs like this . Ther has to be a simple way to just get ALL the properties in a particular bundle directly from the jsp itself.