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

📄 object_group_editor.jsp

📁 Jbuilder2006开发的严格按MVC设计模式组织开发过程
💻 JSP
字号:
<%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@page contentType="text/html; charset=GBK"%>
<html:html>
  <head>
  <link href="<%=request.getContextPath()%>/_normal/css/style.css" rel="stylesheet" type="text/css">
  <title>对象类别编辑</title>
<script language="javascript" src="<%=request.getContextPath()%>/_normal/script/common.js" type="text/javascript"></script>
<script  language="javascript"  type="text/javascript">
function doSave() {
  if(document.all.ojbGroupName.value==''){
    document.all.ojbGroupName.focus();
    alert('请输入持久化对象类别名称!');
    return false;
  }
  if (confirm("确定保存该信息吗?")) {
      actfrmTopsJ2eeObjGroup.submit();
      return true;
  }
  else {
    return false;
  }
}

</script>
  </head>
  <body>
  <p>
  <table cellpadding="0" cellspacing="0" border="0" width="100%">
    <tr>
      <td width="70%" nowrap class="location">您的位置:持久化对象类别编辑</td>
    </tr>
  </table>
  <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td width="7%" id="save" align="center" valign="middle" nowrap class="toolbar" onMouseOver="OMO()" onMouseOut="OMOU()" onClick="doSave()">
        <img src="<%=request.getContextPath()%>/_normal/toolbar_pic/page_save.gif" alt="保存">
        保存
      </td>
      <td width="1%" align="center" valign="middle" nowrap class="toolbar">|</td>
      <td width="7%" align="center" valign="middle" nowrap class="toolbar" onMouseOver="OMO()" onMouseOut="OMOU()" onClick="actfrmTopsCClient.reset()">
        <img src="<%=request.getContextPath()%>/_normal/toolbar_pic/page_refresh.gif" alt="重置">
        重置
      </td>
      <td width="1%" align="center" valign="middle" nowrap class="toolbar">|</td>
      <td width="7%" align="center" valign="middle" nowrap class="toolbar" onMouseOver="OMO()" onMouseOut="OMOU()" onClick="javascript:history.go(-1)">
        <img src="<%=request.getContextPath()%>/_normal/toolbar_pic/arrow_undo.gif" alt="返回">
        返回
      </td>
      <td width="74%" align="center" valign="middle" nowrap class="toolbar">      </td>
    </tr>
  </table>
  <html:form action="/actTopsJ2eeObjGroup" method="POST">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr>
        <td width="100%" align="center">
          <table border="0" cellpadding="0" cellspacing="1" width="70%">
            <html:hidden property="id"/>
            <tr>
              <td align="right" width="30%">对象类别名称</td>
              <td>
                <html:text property="ojbGroupName" readonly="false" style="width:70%"/>
              </td>
            </tr>
            <tr>
              <td align="right" width="30%">定义人</td>
              <td>
                <html:text property="zzCreateUser" readonly="true" style="width:70%"/>
              </td>
            </tr>
            <tr>
              <td align="right" width="30%">定义时间</td>
              <td>
                <html:text property="sd_ZzCreateDate" readonly="true" style="width:70%"/>
              </td>
            </tr>
          </table>
        </td>
      </tr>
    </table>
    <html:hidden property="method"/>
  </html:form>
  </body>
</html:html>

⌨️ 快捷键说明

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