Re: Re[4]: EL Expression in html:hidden tag

2003-11-08 Thread Craig R. McClanahan
Quoting Arne Brutschy <[EMAIL PROTECTED]>: > Hello, > > Monday, November 3, 2003, 7:20:31 PM, you wrote: > KS> I'm jumping in late on this thread, but why bother using Struts-EL at all > under > KS> JSP 2.0? The original (RT) tags should be magically EL-aware as long as > the app > KS> uses a Ser

Re: Re[4]: EL Expression in html:hidden tag

2003-11-06 Thread Kris Schneider
Yup, that's the theory anyway. As of JSP 2.0 (with a Servlet 2.4 format web.xml that has not explicity deactivated EL evaluation), request-time attribute values can be specified using either the familiar scriptlet expression (<%= %>) or the EL (${}). So, any pre-JSP 2.0 tags that have attributes wi

Re[4]: EL Expression in html:hidden tag

2003-11-06 Thread Arne Brutschy
Hello, Monday, November 3, 2003, 7:20:31 PM, you wrote: KS> I'm jumping in late on this thread, but why bother using Struts-EL at all under KS> JSP 2.0? The original (RT) tags should be magically EL-aware as long as the app KS> uses a Servlet 2.4 format web.xml, right? Oh, really? I didn't know t

RE: Re[2]: EL Expression in html:hidden tag

2003-11-03 Thread Karr, David
Oh, duh. Good point. > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > > I'm jumping in late on this thread, but why bother using > Struts-EL at all under > JSP 2.0? The original (RT) tags should be magically EL-aware > as long as the app > uses a Servlet 2.4 for

RE: Re[2]: EL Expression in html:hidden tag

2003-11-03 Thread Kris Schneider
I'm jumping in late on this thread, but why bother using Struts-EL at all under JSP 2.0? The original (RT) tags should be magically EL-aware as long as the app uses a Servlet 2.4 format web.xml, right? http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance

RE: Re[2]: EL Expression in html:hidden tag

2003-11-03 Thread Karr, David
> -Original Message- > From: Arne Brutschy [mailto:[EMAIL PROTECTED] > > Thursday, October 30, 2003, 3:53:39 PM, you wrote: > RB> Is ${pageContext.request.servletPath} returning anything? > Yes, it is returning the right path. > > RB> Try something like > RB> RB> value="${pageContext.r

Re[3]: EL Expression in html:hidden tag

2003-11-03 Thread Arne Brutschy
Hello, I got it, a simple did the trick. I guess I shouldn't try to use struts tags too hard... Thanks, Arne Monday, November 3, 2003, 12:29:11 PM, you wrote: AB> I already tried this, it does not work. Basically, it should be the AB> same as AB> AB> ${pageContext.request.servletPat

Re[2]: EL Expression in html:hidden tag

2003-11-03 Thread Arne Brutschy
Hello, Thursday, October 30, 2003, 3:53:39 PM, you wrote: RB> Is ${pageContext.request.servletPath} returning anything? Yes, it is returning the right path. RB> Try something like RB> value="${pageContext.request.servletPath}"/> I already tried this, it does not work. Basically, it should be th

Re: EL Expression in html:hidden tag

2003-10-30 Thread Ruth, Brice
Is ${pageContext.request.servletPath} returning anything? Try something like Use the JSTL core tag library at http://java.sun.com/jstl/core to get "c:out" ... Arne Brutschy wrote: Hello, I'm having a problem with the html:hidden tag. What I'm trying to do is: On every page, there is a logou

EL Expression in html:hidden tag

2003-10-30 Thread Arne Brutschy
Hello, I'm having a problem with the html:hidden tag. What I'm trying to do is: On every page, there is a logout button included. When the user hits the button, the request will be send to an logoutAction. Afterwards, the request should be redirected back to the page where the user was before he