O
oziris
Hi,
I read 2 things about "WebSphere compatible JSP code". I would like to
be sure that is true:
1. WebSphere can't perform evaluation within a taglib.
Ex:
Wrong:
<input type="hidden" name="foo" value="<%= request.getParameter("foo")
%>" />
Right:
<%
String fooParam = request.getParameter("foo");
%>
<input type="hidden" name="foo" value="<%= fooParam %>" />
2. The WebSphere JSP Compiler doesn't accept single-quote (double-quote
must be used).
Thanks a lot for helping me.
-o / France
I read 2 things about "WebSphere compatible JSP code". I would like to
be sure that is true:
1. WebSphere can't perform evaluation within a taglib.
Ex:
Wrong:
<input type="hidden" name="foo" value="<%= request.getParameter("foo")
%>" />
Right:
<%
String fooParam = request.getParameter("foo");
%>
<input type="hidden" name="foo" value="<%= fooParam %>" />
2. The WebSphere JSP Compiler doesn't accept single-quote (double-quote
must be used).
Thanks a lot for helping me.
-o / France