networktypeedit.jsp
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page language="java"  pageEncoding="GB2312" contentType="text/html;charset=GB2312"%>
  2. <%@ include file="/common/taglibs.jsp"%>
  3. <%@ include file="/common/meta.jsp"%>
  4. <html>
  5. <head>
  6. <title>网上办公类型说明</title>
  7. <link rel="stylesheet" type="text/css" href="../include/style.css">
  8. <SCRIPT LANGUAGE="JavaScript" src='<c:url value="/scripts/datechoice.js"/>'></SCRIPT><SCRIPT LANGUAGE="JavaScript" src='<c:url value="/scripts/_js.js"/>'></SCRIPT>
  9. <META NAME="Author" CONTENT="xunuo">
  10. <META NAME="Keywords" CONTENT="xunuo">
  11. <META NAME="Description" CONTENT="自动生成">
  12. <script language="javascript">
  13. <!--
  14. function checkForm(form){
  15. type_returnStr = XN_CheckNull(form.type.value)  ;
  16. if (type_returnStr != Validationstr){  //不能为空
  17. XN_alert(er+"类型"+type_returnStr);
  18. form.type.focus();
  19. return false;
  20. }
  21. if (form.status.value != "1"){
  22. form.status.value="0" ;
  23. }
  24. }
  25. -->
  26. </script>
  27. </head>
  28. <body>
  29. <table border="0" cellpadding="4" cellspacing="1" class=table width="100%">
  30. <html:form action="/sys/networktype/saveNetworktype.html" enctype="multipart/form-data" onsubmit="return checkForm(this);">
  31. <input type="hidden" name="from" value='<c:out value="${from}"/>'>
  32. <html:hidden property="id"/>
  33. <html:hidden property="serialnumber" />
  34. <html:hidden property = "havefile" />
  35. <!--没有编辑的字段都需要在此添加-->
  36. <tr>
  37.   <th width="100%" align="center" colspan="2">网上办公类型说明</th>
  38. </tr>
  39. <tr class="td">
  40.   <td align="left" width="40%" nowrap>类型:(√)(最多50字符)</td>
  41.   <td align="left"  width="60%">
  42. <html:text property="type" size="40" maxlength = "50"/></td>
  43. </tr>
  44. <tr class="td">
  45.   <td align="left" width="40%" nowrap>状态:(最多50字符)</td>
  46.   <td align="left"  width="60%">
  47. <select name="status"><option value="1" <c:if test="${networktypeForm.status==1}"><c:out value="selected" /></c:if> >发布</option><option value="0" <c:if test="${networktypeForm.status==0}"><c:out value="selected" /></c:if>>不发布</option></select>
  48. </td>
  49. </tr>
  50. <tr class="td"><td colspan="2" align=center><html:submit property="yes" styleClass="button" value="确定"/></td></tr>
  51. </html:form>
  52. </table>
  53. </body>
  54. </html>