日期:2014-05-20 浏览次数:20658 次
<form action="showCompany/updateCompany.action" method="post"> <table align="center" border="1" height="80" width="1000" bgcolor="#d2ffff"> <tr> <td> <s:iterator value="listCompany"> <!--id="companyId"定义一个固定的id在metalHuiYuan的获取表单方法中使用 tb_lxr表中的company_id与之对应--> <input type="hidden" id="companyId" name="id" value="<s:property value="id"/>" size="50%" /> <!--id="manzdr"定义一个固定的id在metalHuiYuan的获取表单方法中使用 默认的操作人--> 公司名称:<input id="manzdr" type="text" name="name" value="<s:property value="name"/>" size="50%" /> 公司简称:<input type="text" name="shortname" value="<s:property value="shortname"/>" size="50%" /> <br> 地 址:<input type="text" name="address" value="<s:property value="address"/>" size="50%" /> 税 号:<input type="text" name="taxno" value="<s:property value="taxno"/>" size="50%" /> <br> 开户银行:<input type="text" name="bank" value="<s:property value="bank"/>" size="50%" /> 银行账号:<input type="text" name="acount" value="<s:property value="acount"/>" size="50%" /> <br> 工商执照:<input type="text" name="gszz" value="<s:property value="gszz"/>" size="50%" /> 法人代表:<input type="text" name="frdb" value="<s:property value="frdb"/>" size="50%" /> <br> 注册资本:<input type="text" name="zczb" value="<s:property value="zczb"/>" size="50%" /> 年检时间:<input type="text" name="njsj" value="<s:property value="njsj"/>" size="50%" /> <br> 网 址:<input type="text" name="url" value="<s:property value="url"/>" size="95%" /> <br> 公司简介:<textarea rows="2" cols="20" tabindex="60" style="height: 50px; width: 50%;" name="intro"> <s:property value="intro" /> </textarea> <br> <input type="hidden" id="market_id_h" value="<s:property value="marketId"/>"> 所在市场: <select id="market_id" name="market_id" style="width: 270px"> <option value="" /> ===请选择市场=== </option> </select> <input type="hidden" id="area_idcode_h" value="<s:property value="areaIdcode"/>" /> 所在区域:<select id="area_idcode" name="area_idcode" style="width: 270px"> <option value=""> ===请选择区域=== </option> </select> <input type="submit" value="修改公司资料"> <br> </s:iterator> </td> </tr> </table> </form>