⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 equipmentmodify1.jsp

📁 《jsp案例开发》这本书的源代码。包括源代码和相关的具体配置操作步骤。非常不错
💻 JSP
📖 第 1 页 / 共 2 页
字号:
           if(document.form1.contractid.value=="")                          {alert("合同编号不能为空!");                          return false;           }  if(document.form1.parameter.value=="")          {alert("性能参数不能为空!");          return false;          }       if(document.form1.manufacture.value=="")          {alert("生产厂商不能为空!");          return false;          }          if(document.form1.price.value=="")              {alert("设备价格不能为空!");              return false;               }               if(!checknum1(document.form1.price.value))       {alert("设备价格要填入数字!");           return false; }return true;        }    </script>    <SCRIPT>    window.onload=init    </SCRIPT>    </STYLE>    </HEAD>    <BODY class="bg" topMargin=20 leftmargin="0" marginwidth="0" marginheight="0">    <DIV align=center>    <form name="form1" method="post" action="equipmentmodifyed.jsp" OnSubmit="return checkinput()">        <TABLE class=outter cellSpacing=0 cellPadding=0 width=500 border=0>           <TR>          <TD><IMG height=4 src="../../MacOS/lefttop.gif" width=6></TD>          <TD background=../../MacOS/top.gif colSpan=3><IMG height=4          src="../../MacOS/top.gif" width=1></TD>          <TD><IMG height=4 src="../../MacOS/righttop.gif"></TD>        </TR>        <TR>          <TD vAlign=top background=../../MacOS/lwing.gif rowSpan=3><IMG height=18          src="../../MacOS/left.gif" width=6></TD>          <TD vAlign=top background=../../MacOS/titlebg.gif width="16">            <DIV><img src="../../MacOS/logo.gif" width="16" height="16" border="0" ></DIV>          </TD>            <TD vAlign=top noWrap align=center width="100%"        background=../../MacOS/titlebg.gif><SPAN          style="BACKGROUND-COLOR: #cecece"><FONT class=strong> MSA - OFFICE </font></SPAN></TD>            <TD><IMG height=18 src="../../MacOS/right_b2.gif" width=18 border="0" ></TD>          <TD vAlign=top background=../../MacOS/rwing.gif rowSpan=3><IMG height=18          src="../../MacOS/right.gif" width=7></TD>        </TR>        <TR>          <TD background=../../MacOS/hr.gif colSpan=3><IMG height=2          src="../../MacOS/hr.gif" width=1></TD>        </TR>        <TR>            <TD colSpan=3 align="center"><br>    <table width="500" border="1" cellspacing="1" bordercolor="#666666">                <tr bgcolor="#FAFAFA">                  <td>                    <table width="500" border="0" cellspacing="0" cellpadding="2">                      <tr bgcolor="#fafafa">                        <td colspan="3">设备管理&gt;&gt; 修改设备表</td>                      </tr>                    </table>                    <table class=title width="500" border="0" cellspacing="1" cellpadding="2">                      <tr bgcolor="#fafafa">                        <td width="30%"> <font class="strong" > 设备类型:</font></td>    <%    String t="";    String v="";    if(eqd.getType().intValue()==1)      {t="VTS备件";v="1";}    if(eqd.getType().intValue()==2)      {t="航标设备及备件";v="2";}    if(eqd.getType().intValue()==3)      {t="AIS系统及备件";v="3";}    if(eqd.getType().intValue()==4)      {t="测绘设备及备件";v="4";}    if(eqd.getType().intValue()==5)      {t="其他";v="5";}    %>                        <td width="70%">                   <select name="devtype">                   <option value="<%=v%>"><%=t%></option>    <option value="1">VTS备件</option>    <option value="2">航标设备及备件</option>    <option value="3">AIS系统及备件</option>    <option value="4">测绘设备及备件</option>    <option value="5">其他</option>                   </select>                       </td>                      </tr>                      <tr bgcolor="#e0e0e0">                        <td width="135"> <font  class="strong"> 设备名称:</font> </td>                        <td width="454"> <input type="text" name="devname" class="file" value="<%=eqd.getName()%>">                       <input type="hidden" name="deviceid" class="file" size="30" value="<%=deviceid%>">                       </td>                      </tr>                      <tr bgcolor="#fafafa">                        <td width="135"> <font  class="strong"> 设备型号:</font></td>                        <td width="454"> <input type="text" name="devmodel" class="file" value="<%=eqd.getModel()%>"> </td>                      </tr>                      <tr bgcolor="#e0e0e0">                        <td width="135"><font  class="strong"> 生产厂商:</font></td>    <%  String a="";    if(eqd.getCompany()!=null)      a=eqd.getCompany();  %>                        <td width="454"> <input name="manufacture" type="text" class="file" size="30" value="<%=a%>">                        </td>                      </tr>                      <tr bgcolor="#fafafa">                        <td width="135"><font  class="strong"> 引进日期:</font></td>  <% String ty="请选择";  String tm="请选择";  String td="请选择";  int year=-1;  int month=-1;  int day=-1;if(eqd.getIntime()!=null){ year = eqd.getIntime().getYear()+1900; ty = (new Integer(year)).toString(); month = eqd.getIntime().getMonth()+1; tm = (new Integer(month)).toString(); day = eqd.getIntime().getDate(); td = (new Integer(day)).toString();}%>                        <td width="454"> <select name="year">                                      <option value="<%=year%>"><%=ty%></option>                                     <%                                 for(int i=1970;i<=2003;i++){                                     %>                                     <option value="<%=i%>"><%=i%></option>                                 <%}%>                                     </select> 年                                     <select name="month">                                 <option value="<%=month%>"><%=tm%></option>                                     <%                                 for(int i=1;i<=12;i++){                                     %>                                     <option value="<%=i%>"><%=i%></option>                                 <%}%>                                     </select> 月                                     <select name="day">                                 <option value="<%=day%>"><%=td%></option>                                     <%                                 for(int i=1;i<=31;i++){                                     %>                                     <option value="<%=i%>"><%=i%></option>                                 <%}%>                                     </select>日                        </td>                      </tr>                      <tr bgcolor="#e0e0e0">                        <td width="135"><font  class="strong"> 合同编号:</font></td>                        <td width="454"><input type="text" name="contractid" class="file" value="<%=eqj.getContractid()%>"></td>                      </tr>                      <tr bgcolor="#fafafa">                        <td width="135"> <font  class="strong"> 性能参数:</font></td>  <%String top="";if(eqd.getParameter()!=null)  top=eqd.getParameter();%>                        <td width="454"> <textarea name="parameter"  class="file" rows="3" cols="50"><%=top%></textarea>                        </td>                      </tr>                      <tr bgcolor="#e0e0e0">                        <td width="135"><font  class="strong"> 所属海区:</font></td>                        <td width="454">                     <select name="district">                    <option value="<%=eqd.getDistrict()%>"><%=eqd.getDistrict()%></option>                    <option value="北方海区">北方海区</option>                    <option value="东海海区">东海海区</option>                    <option value="南海海区">南海海区</option>                    <option value="海南海事局">海南海事局</option>                     </select>                      </td>                      </tr>  <% String ty1="请选择";  String tm1="请选择";  String td1="请选择";  int year1=-1;  int month1=-1;  int day1=-1;if(eqd.getChecktime()!=null){ year1 = eqd.getChecktime().getYear()+1900; ty1 = (new Integer(year1)).toString(); month1 = eqd.getChecktime().getMonth()+1; tm1 = (new Integer(month1)).toString(); day1 = eqd.getChecktime().getDate(); td1 = (new Integer(day1)).toString();}%>                      <tr bgcolor="#fafafa">                        <td width="135"><font  class="strong"> 验收日期:</font></td>                        <td width="454">  <select name="year1">                                      <option value="<%=year1%>"><%=ty1%></option>                                     <%                                 for(int i=1970;i<=2003;i++){                                     %>                                     <option value="<%=i%>"><%=i%></option>                                 <%}%>                                     </select> 年                                     <select name="month1">                                 <option value="<%=month1%>"><%=tm1%></option>                                     <%                                 for(int i=1;i<=12;i++){                                     %>                                     <option value="<%=i%>"><%=i%></option>                                 <%}%>                                     </select> 月                                     <select name="day1">                                 <option value="<%=day1%>"><%=td1%></option>                                     <%                                 for(int i=1;i<=31;i++){                                     %>                                     <option value="<%=i%>"><%=i%></option>                                 <%}%>                                     </select>日                        </td>                      </tr><tr bgcolor="#e0e0e0"><td width="135"><font  class="strong"> 设备价格:</font></td><td width="454"><%String pp="";if(eqd.price!=null)  pp=eqd.price.toString();%>                      <input type="text" class="file" name="price" value="<%=pp%>">万美元                      </td>                    </tr> <tr bgcolor="#fafafa">                       <td width="135"><font  class="strong"> 设备机号:</font></td>                       <td width="454"> <%pp=""; if(eqd.devicesn!=null)   pp=eqd.devicesn; %>                       <input type="text" class="file" name="devicesn" value="<%=pp%>">                       </td>                    </tr>                      <tr bgcolor="#e0e0e0" align="center">                        <td colspan="2" height="30">  &nbsp; <input type="submit" name="Button2" value=" 保  存 " class="file">                          &nbsp; <input type="reset" name="Button32" value=" 还  原 " class="file" >                          <input type="button" name="Button21" value=" 返  回 " class="file" onClick="history.back();">                        </td>                      </tr>                    </table>                  </td>                </tr>              </table>              <p><img src="../../images/msalogo.gif" width="272" height="50">              <table width="100%" border="0" cellspacing="0" cellpadding="0">                 <tr>                  <td height="3"><img src="a.gif" width="1" height="1"></td>                </tr>                <tr>                  <td background="../../MacOS/hr.gif"><img src="../../MacOS/hr.gif" width="1" height="2"></td>                </tr>                 <tr>                  <td height="3"><img src="a.gif" width="1" height="1"></td>                </tr>              </table>              <table width="100%" border="0" cellspacing="0" cellpadding="0">                <tr>                  <td> <div align="right"><a href="../../help.htm" target="blank" style="cursor:help" title="使用帮助"><img src="../../MacOS/help.gif" width="16" height="16" border="0">HELP</a></div></td>                </tr>              </table></TD>        </TR>        <TR>          <TD><IMG height=7 src="../../MacOS/leftbottom.gif" width=6></TD>          <TD background=../../MacOS/bottom.gif colSpan=3><IMG height=7          src="../../MacOS/bottom.gif" width=1></TD>          <TD><IMG height=7 src="../../MacOS/rightbottom.gif"    width=7></TD>        </TR>        </TABLE>      <BR>        <TABLE cellSpacing=1 cellPadding=2 width="300" border=0>          <TBODY>            <TR>              <TD align=center><FONT class=footer><IMG height=1          src="MacOS/hr_black.gif" width="100%"><BR>              Orient Super Net MSA-OFFICE System                </FONT></TD>            </TR>          </TBODY>        </TABLE>      </form></DIV></BODY></HTML><%}}%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -