我的框架首页是这样定义的
<FRAMESET border=0 frameSpacing=0 rows=66,* frameBorder=NO cols=*><FRAME name=topFrame src="source.files/login_index_top.jsp" noResize scrolling=no><FRAMESET border=0 frameSpacing=0 rows=* frameBorder=NO cols=185,*><FRAME name=leftFrame src="source.files/admin_index_left.jsp" noResize><FRAME name=mainFrame src="source.files/update_info.jsp"></FRAMESET></FRAMESET>,我现在想在update_info.jsp这个页面使用Struts action,该页面的form是这样写的<FORM  action=UpdateUserAction.do method="post">(我用的是strtus1.x)提交按钮是<INPUT type="submit" value="更新" name=submit/>    struts-xml.config是这样配置的 
<!-- 用户信息更新的formAction路径 -->
  <action path="/UpdateUserAction"
          type="com.ecweb.action.UpdatePersonInfoAction" name="register">
          <forward name="updateUserSuccess" path="/index.jsp"/><!-- 用户注册成功时跳转到主页 -->
          <forward name="updateUserFaile" path="/error.jsp"/><!-- 用户注册失败时停在本页面 -->
   </action>为什么我在update_info.jsp这个页面点更新时出现
 org.apache.struts.chain.commands.InvalidPathException: No action config found for the specified url这个问题
希望各位能帮帮忙