I need to create an object of the inputs and send it to my action.
User class has a long list of parameters, if I extend it I should have all of them as parameters of my Register method.
The following code works but the problem is that when it comes back from controller, goes to reg.jsp page not to the register.jsp page.
Someone said an option is to send the object to javascript but now sure how to do that ! something like this
<script>someFunction(<%=obj%>);</script>
Form in register.jsp
<s:form action="reg.jsp">
<s:textfield name="fname" label="Name"/>
<s:textfield name="lname" label="Surname"/>
<s:textfield name="mobile" label="Mobile"/>
.....
<s:submit validate="true"></s:submit>
</s:form>
Reg.jsp
<jsp:useBean id="obj" class="com.Users"/>
<jsp:setProperty property="*" name="obj"/>
<%
Registration.Register(obj);
out.print("You are registered");
%>
Action
@Action
public class Registration{
public boolean Register(User obj)
{
.....
}