html:form action="register.do" mothed="post">
改为method ,

解决方案 »

  1.   

    使用Struts的html标签必须注意:
          1.我们使用一般的标签<form action="*.do" method="post"></form>
            form 中的action可以为空,活随便写个(不存在的也行)
           2.但使用struts标签<html:form action="register.do" mothed="post"> 
            这里面的action="" 不能为空,如果写还必须存在此*.do
            (也就是说检查你的register.do是否存在 
    你的错误可能出现在你还没有写register.do的Action类