devicesearch01.jsp

来自「简单的操作ldap的管理系统」· JSP 代码 · 共 31 行

JSP
31
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>分析仪器查询结果</title>
</head>
<%@ page import="ldap.DeviceSearch" %> 
<%@ page import="mypack.DeviceMeta" %> 
<body>
<jsp:useBean id="DeviceSearch" scope="session" class="ldap.DeviceSearch">
</jsp:useBean>  
<%
	String title=(String)request.getParameter("t1");
	title=new String(title.getBytes("ISO-8859-1"));
	
%>
<table border="1px",cellingspacing="0",cellingpadding="10" align=center width="90%" bgcolor="#E4E8EF">
<tr bgcolor="#76aef0">
<td>属性名</td>
 <td>值</td>
</tr>
<tr>
<td>仪器名称</td>
<td><input name="T1" type="text" id="T1" value="<%=title%>"/> </td>
</tr>

</table>
</body>
</html>

⌨️ 快捷键说明

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