Good morning List,
Could someone tell me how to read actionForm's bean value please?
(1) Bean.java
String name;
... ...
(2) Action class
public class ProcessAction extends ActionSupport
{
Bean bean1 = new Bean();
... ...
}
(3) JSP file
Here is my question!
<form action="ProcessAction" ...>
<%
String name = bean1.getName();
%>
... ...
</form>
How to assign bean1.name to string name in jsp file please?
Thanks a lot!
--
Lu Ying
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]