RE: please Help --session check

2001-01-18 Thread Michael Wentzel
> Another possibility is to create a simple custom tag that > does the check for > you. The example application in the Struts Framework project > includes just such a tag. > It is invoked like > this: > > > > and currently performs logic very similar t

Re: please Help --session check

2001-01-17 Thread Craig R. McClanahan
Michael Wentzel wrote: > > As a part of authentication check, I am checking for a session > > attribute to validate user login across pages. > > eg: > > > > if (session.getAttr("user")==null){ > > sendRedirect(loginpage); > > } > > > > But now, I am keeping these lines in all my jsp files(c

RE: please Help --session check

2001-01-16 Thread Michael Wentzel
> As a part of authentication check, I am checking for a session > attribute to validate user login across pages. > eg: > > if (session.getAttr("user")==null){ > sendRedirect(loginpage); > } > > But now, I am keeping these lines in all my jsp files(cut and > paste)..If I > have to change