• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Newbie to JSP, multiple user login problem

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

i am very new to JSP.

just want to ask, if there's multiple users login into a JSP websites, what's the best way to manage their variables, sessions via browser or classes via server side ?

.

I am new to struts.

What's the recommended way to build system menu using struts?

how do i include parameters from the parent page to the next child page using this
for example this
<Start:link forward="schedule">Master Setup</Start:link>



 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

what's the best way to manage their variables, sessions via browser or classes via server side ?



Sessions are maintained on the server side - the browser side is responsible only for tracking the cookie that provides session identification.

The session mechanism is provided so you can keep the data for multiple users separated easily.

Bill
 
Mel Cen
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how about struts ?
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What about it?
 
Mel Cen
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What's the recommended way to build system menu using struts?

how do i include parameters from the parent page to the next child page using this
for example this
<td> <Start:link forward="schedule">Master Setup</Start:link></td>
<td> <Start:link forward="schedule">Home</Start:link></td>
<td> <Start:link forward="test1">1</Start:link></td>
<td> <Start:link forward="test"2>2</Start:link></td>


the forward only forwards to a diff page,
but how do i include parameters from parent jsp to diff jsp ?

using beans ?
 
Have you no shame? Have you no decency? Have you no tiny ad?
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic