struts 的request 问题
各位高手,最近遇到一个问题,想了几天都想不明白就是
我在一个jsp页面,例如 index.jsp
<body>
<html:form action="/login">
name : <html:text property="name"/><br/>
<html:submit/><html:cancel/>
</html:form>
</body>
而在相对应的一个FormBean是
public class LoginForm extends ActionForm
{
private String name;
public void reset(ActionMapping mapping, HttpServletRequest request)
{
String name=request.getParameter("name"); //这里的name为null我怎样想都想不通,应该是jsp里name 的 // 值呀,有没有高手能解答一下~,
}
}