RE: session trakking in jsp or in Bean

2006-01-12 Thread Mike
The session is tracked by the servlet container, and the JSP, bean, custom tag, and servlet all have access to it. So, I think thta's a decision that you don't have to make. Mike K. --- marju jalloh <[EMAIL PROTECTED]> wrote: > Thanks > I know all about java session.What I mean is > implement

RE: session trakking in jsp or in Bean

2006-01-12 Thread marju jalloh
Thanks I know all about java session.What I mean is implementing session in jsp or in bean which one is advisable Fredrik Rubensson <[EMAIL PROTECTED]> wrote: > Marju wrote: > I want to track a session of an input a user enter in my jsp page.The jsp page >is using a bean to execute sql qu

RE: session trakking in jsp or in Bean

2006-01-12 Thread Fredrik Rubensson
> Marju wrote: > I want to track a session of an input a user enter in my jsp page.The jsp page >is using a bean to execute sql queries.That works wel. > > My question is it advisable to track the session in the jsp page or in the >Bean.Which is better I am not sure I follow you here. The

session trakking in jsp or in Bean

2006-01-12 Thread marju jalloh
Hi I want to track a session of an input a user enter in my jsp page.The jsp page is using a bean to execute sql queries.That works wel. My question is it advisable to track the session in the jsp page or in the Bean.Which is better Thanks in advance ---