How data transfered from one formbean to another formbean?
Answer Posted / ravi
1)first form
public class M extends ActionForm
{
//some code//
}
2)second form bean
public class Maction extends Action
{
//sme code//
M o=(M)form;//calling the first formbean to second form bean
}
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Can you give an overview of how a struts application flows?
How you will enable front-end validation based on the xml in validation.xml?
What is the purpose of @before annotation?
What do you mean by the abstract package in struts2, and what is its utilization?
How client side validation is enabled on a jsp form?
What do you mean by dynaactionform?
What configurations are stored in struts configuration file ?
What is the purpose of @beforeresult?
What is actioncontext?
What is interceptor struts2?
How to use dispatchaction?
What is apache struts framework?
What is the difference in using Action interface and ActionSupport class for our action classes, which one you would prefer?
What is struts-default package and what are it’s benefits?
Mark the differences between html tags and strut specific html tags.