hi my name is satyam i wrote one java program but i got errors in that program this program is on struts based code and tell me how set the class path in struts at command prompt and how to set multiple class paths at command prompt and environment variables.
This is example program import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionMapping; public class NameForm extends ActionForm { private String name = null; public String getName() { return (name); } public void setName(String name) { this.name = name; } public void reset(ActionMapping mapping, HttpServletRequest request) { this.name = null; } }
View All Comments
| View Tutorial