Accessing session attributes

2001-06-14 Thread James Howe
This is probably a stupid question, but here it goes. I have a handful of string values that I'm storing in the session object. These values aren't associated with any bean (actually, in a sense the session object is the bean). I have a couple of places where I need to display these values

RE: Accessing session attributes

2001-06-14 Thread Charlesworth, Chico
PROTECTED]] Sent: Thursday, June 14, 2001 3:59 PM To: [EMAIL PROTECTED] Subject: Accessing session attributes This is probably a stupid question, but here it goes. I have a handful of string values that I'm storing in the session object. These values aren't associated with any bean (actually

Re: Accessing session attributes

2001-06-14 Thread Linnea Ahlbeck
=text_b align=left nowrapbean:write name=myScheduleWeekDayStopTime//td - Original Message - From: James Howe [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 14, 2001 4:59 PM Subject: Accessing session attributes This is probably a stupid question, but here it goes. I have

Re: Accessing session attributes

2001-06-14 Thread Ted Husted
The html tags are designed to display what's in a related ActionForm bean. So the trick would be to get your String into the ActionForm bean. The place to do this would be in an Action that then forwarded to your JSP. So the Action would go something like this: HttpSession session =

Re: Accessing session attributes

2001-06-14 Thread Craig R. McClanahan
On Thu, 14 Jun 2001, James Howe wrote: This is probably a stupid question, but here it goes. I have a handful of string values that I'm storing in the session object. These values aren't associated with any bean (actually, in a sense the session object is the bean). I have a couple