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

📄 optionadd.jsp

📁 数据字典 TAG标签 用于支持数据对照 支持各种radio check list显示
💻 JSP
字号:
<%@ page language="java"  pageEncoding="utf-8"%>
<% 
	String fcode = request.getParameter("code");
	String ffcode = request.getParameter("fcode");
%>
<%
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0L);
response.setHeader("Pragma", "No-cache");
%>
<script language="javascript"> window.name="win_cha" </script>
<html>
  <head>
  	<title>添加数据</title>
  </head>
  
  <body><center>
  	<form action="optionAddOk.jsp"  target="win_cha" method="post">
  		<input type="hidden" name="fcode" value="<%=fcode %>"/>
  		<input type="hidden" name="ffcode" value="<%=ffcode %>"/>
  		<table border="1">
      <tr>
       <th align="right"> 代码:</th>
       <td><input type="text" value="" name="code"></td>
       </tr>
       <tr>
       <th align="right"> 名称:</th>
       <td><input type="text" value="" name="name"></td>
       </tr>
       <tr>
       <th align="right"> 排序:</th>
       <td><input type="text" value="" name="pos"></td>
       </tr>
       <tr>
       <th align="right">是否有效:</th>
       <td><input type="radio" value="0" name="valid" checked >有效
       		<input type="radio" value="-1" name="valid">无效
       	</td>
      </tr>
      <tr>
      <th align="right">有否下级:</th>
       <td><input type="radio" value="0" name="type" checked >有
       		<input type="radio" value="-1" name="type">无
       	</td>
      </tr>
      <tr>
       	<th align="right">能否删除:</th>
       <td><input type="radio" value="0" name="edit" checked >能
       		<input type="radio" value="-1" name="edit">不能
       	</td>
       </tr>
       <tr>
       	<th>描述信息:</th>
       <td>
       		<textarea name="explain" cols="40" rows="4"></textarea><br>
       		<font size=2 color="red">(最大为100个汉字)</font>
       	</td>
       </tr>
     </table>
       <input type="submit" value="提交" onclick="window.close()">
       <input type="reset" value="取消" onclick="window.close()">
  </form>
   </center>	
  </body>
</html>

⌨️ 快捷键说明

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