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

电子政务应用

开发平台:

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. name_returnStr = XN_CheckNull(form.name.value)  ;
  16. if (name_returnStr != Validationstr){  //不能为空
  17. XN_alert(er+"名称"+name_returnStr);
  18. form.name.focus();
  19. return false;
  20. }
  21. link_returnStr = XN_CheckNull(form.link.value)  ;
  22. if (link_returnStr != Validationstr){  //不能为空
  23. XN_alert(er+"连接"+link_returnStr);
  24. form.link.focus();
  25. return false;
  26. }
  27. }
  28. function cancelValue() {
  29. // form.action = '<c:url value="/sys/article/searchArticle.html"/>';
  30. // form.method.value = "searchArticlesByColumnStatus";
  31. // form.onsubmit = "";
  32.   //  form.submit();
  33.   window.history.go(-1);
  34. }
  35. -->
  36. </script>
  37. </head>
  38. <body>
  39. <table border="0" cellpadding="4" cellspacing="1" class=table width="720">
  40. <html:form action="/sys/sysmodule/saveSysmodule.html" enctype="multipart/form-data" onsubmit="return checkForm(this);">
  41. <input type="hidden" name="from" value='<c:out value="${from}"/>'>
  42. <html:hidden property="id"/>
  43. <!--没有编辑的字段都需要在此添加-->
  44. <tr>
  45.   <th width="100%" align="center" colspan="2">系统模块说明</th>
  46. </tr>
  47. <tr class="td">
  48.   <td align="left" width="40%" nowrap>名称:(√)(最多255字符)</td>
  49.   <td align="left"  width="60%">
  50. <html:text property="name" size="40" maxlength = "255"/></td>
  51. </tr>
  52. <tr class="td">
  53.   <td align="left" width="40%" nowrap>描述:(最多20字符)</td>
  54.   <td align="left"  width="60%">
  55. <html:textarea property="description" cols="39" rows="4"><c:out value="${description}"/></html:textarea></td>
  56. </tr>
  57. <tr class="td">
  58.   <td align="left" width="40%" nowrap>连接:(√)(最多255字符)</td>
  59.   <td align="left"  width="60%"><input type="text" name="link" size="40" maxlength="255" value='<c:out value="${sysmoduleForm.link}"/>' <c:if test="${sysmoduleForm.isdelete == 0}"> readonly </c:if> >
  60. </td>
  61. </tr>
  62. <tr class="td"><td colspan="2" align=center><input type="submit" Class="button" value=" 确定 " <c:if test="${isGuest}">disabled</c:if>/> <input type="button" value=" 取消 " onclick="cancelValue();"  class="button" ></td></tr>
  63. </html:form>
  64. </table>
  65. </body>
  66. </html>