Gonna be kinda difficult since ActionForm classes already extend ActionForm. Just create another ActionForm class and set its state in the associated Action class.
Mark -----Original Message----- From: Charles [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24, 2002 2:17 PM Hi, I got question about new actionform classes extending existing actionform classes. For example, I have this CreateUserProfileForm that has all the fields for User Profiles, which I would like to use them in my new form UpdateUserProfileForm. Is it possible that the UpdateUserProfileForm extend from the existing CreateUserProfileForm (so that I can reuse all the existing attributes of that class) instead of extending from ActionForm? I've tried that and when I start up my application I get a UnavailableException thrown by the ActionServlet. but when I replace the "extend CreateUserProfileForm" back to "extend ActionForm" everything worked fine. Could someone help me out ? Thanks. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

