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

📄 a202.jsp

📁 持久层hibernate技术使用的一个例子
💻 JSP
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html; charset=GBK" language="java" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@	taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<html:html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>添加考题</title>
<link href="/css/base.css" rel="stylesheet" type="text/css">
</head>

<body>
<p>&nbsp;</p>
<center>
<p><b><span class="font_title">添加考题</span></b></p>
</center>
<br>
<hr width="80%">

<html:form action="/U05A202Action">

<table width="80%"  border="0" align="center" cellpadding="4" cellspacing="1">
<tr align="center">
	<td width="60%" align="center"><span class="font_title">考题内容</span></td>
	<td width="20%" align="center"><span class="font_title">考题答案</span></td>
</tr>
<tr align="center">
  <td width="50%">
  	<html:textarea property="questions" rows="10" cols="50%"></html:textarea>
  </td>	
  <td width="30%">
  	<html:textarea property="answer" rows="10" cols="30%"></html:textarea>
  </td>
</tr>
</table>
<br>
<center>
<table>
<tr>
<td>
<html:errors property="insertError"/>
</td>
</tr>
</table>
</center>
<br>
<center>
添加到题型:<html:select property="type" >
			<html:option value="0">请选择</html:option>
			<html:options collection="tqtName" property="tqtId" labelProperty="tqtName"/>
		</html:select>		  
		  &nbsp;&nbsp;&nbsp;
		<html:submit property="" styleClass="inputstyle2">执 行</html:submit>    
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<p>&nbsp;</p>
<html:link href="/returnA20.do">返 回</html:link>		
</html:form>
</body>
</html:html>

⌨️ 快捷键说明

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