sysuserroleedit.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. 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. }
  22. function cancelValue() {
  23. // form.action = '<c:url value="/sys/article/searchArticle.html"/>';
  24. // form.method.value = "searchArticlesByColumnStatus";
  25. // form.onsubmit = "";
  26.   //  form.submit();
  27.   window.history.go(-1);
  28. }
  29. -->
  30. </script>
  31. </head>
  32. <body>
  33. <table border="0" cellpadding="4" cellspacing="1" class=table width="100%">
  34. <html:form action="/sys/sysuserrole/saveSysuserrole.html" enctype="multipart/form-data" onsubmit="return checkForm(this);">
  35. <input type="hidden" name="from" value='<c:out value="${from}"/>'>
  36. <html:hidden property="id"/>
  37. <!--没有编辑的字段都需要在此添加-->
  38. <tr>
  39.   <th width="100%" align="center" colspan="2">系统用户角色说明</th>
  40. </tr>
  41. <tr class="td">
  42.   <td align="left" width="40%" nowrap>角色名称:(√)(最多255字符)</td>
  43.   <td align="left"  width="60%">
  44. <html:text property="name" size="40" maxlength = "255"/></td>
  45. </tr>
  46. <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>
  47. </html:form>
  48. </table>
  49. </body>
  50. </html>