updateringcontent.jsp

来自「jsp_javabean+tomcat的web管理系统!」· JSP 代码 · 共 76 行

JSP
76
字号
<%@ page language="java" contentType="text/html; charset=gb2312"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
}
.style1 {color: #FFFFFF}
-->
</style>
<link href="css/all.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="100%" height="100%"  border="0" cellpadding="0" cellspacing="1" bgcolor="#808080">
  <tr>
    <td height="23"> <span class="style1">后台管理--[ 铃声的数据  ]</span></td>
  </tr>
  <tr>
    <td align="center" valign="top" bgcolor="#FFFFFF"><br>
    <html:form action="/updateRingContent">
      <table width="85%"  border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
        <tr bgcolor="#F2F2F2">
          <td height="20" colspan="2">&nbsp;</td>
        </tr>
        <tr>
          <td width="48%" height="16" bgcolor="#FFFFFF"><div align="right">数据类型 </div></td>
          <td width="52%" bgcolor="#FFFFFF"><div align="left">
                    <html:select property="dataType">
				<html:option value="0">二进制</html:option>
     			<html:option value="1">文本</html:option>
				</html:select>

          </div></td>
        </tr>
        <tr>
          <td height="16" bgcolor="#FFFFFF"><div align="right">手机类型</div></td>
          <td bgcolor="#FFFFFF"><div align="left">
              <html:select property="mobileType.id">
                <logic:iterate id="m" name="mobile_type">
                  <html:option value="${m.id}">
               <bean:write name="m" property="name"/>
                  </html:option>
                </logic:iterate>
              </html:select>
          </div></td>
        </tr>
        <tr>
          <td height="17" bgcolor="#FFFFFF"><div align="right">
            <html:submit/>
            </div></td>
          <td bgcolor="#FFFFFF"><div align="left">
            <html:reset/>
             </div></td>
        </tr>
        <tr bgcolor="F2F2F2">
          <td height="5" colspan="2"></td>
        </tr>
      </table>

    </html:form></td>
  </tr>
</table>
</body>

</html>

⌨️ 快捷键说明

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