public class check extends DispatchAction {
Hi this is what my Action page has....
What is wrong in it.
When an action is fired it is printing two times the "welcome"
public ActionForward execute(ActionMapping mapping,ActionForm form,HttpServletRequest Request,HttpServletResponse Response) throws Exception
{
String emailAddress =(String)((BaseActionForm)form).get("emailAddress");
String password = (String)((BaseActionForm)form).get("password");
System.out.println("Welcome");
return mapping.findForward(Constants.SUCCESS);
}
}