Re: Access ActionForm methods/varaibles in JSP

2009-03-05 Thread Emi Lu
I suggest that you not embed Java code in JSPs in scriptlets like this. It's better to use Struts tags instead. Are you looking at using Struts 1 or Struts 2? Struts1 for now. Do you have a simple code. I am not sure I quite understand how you propose to use java code in JSP? Thanks, -- Lu

Re: Access ActionForm methods/varaibles in JSP

2009-03-05 Thread Jim Kiley
I suggest that you not embed Java code in JSPs in scriptlets like this. It's better to use Struts tags instead. Are you looking at using Struts 1 or Struts 2? jk On Thu, Mar 5, 2009 at 3:22 PM, Emi Lu wrote: > Good morning, > > In JSP file, may I know how to get action bean please? > > > <%

Access ActionForm methods/varaibles in JSP

2009-03-05 Thread Emi Lu
Good morning, In JSP file, may I know how to get action bean please? <% if(f1.getCode().equals('abc')) { %> ... ... <% } %> In JSP, I'd like to know how to call "methods, fields" in action form bean? Thanks a lot! -- Lu Ying ---