📄 owersearch_name.jsp~11~
字号:
<%@ page contentType="text/html; charset=GBK" import="java.util.Vector;" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<jsp:useBean id="ower" scope="session" class="bean.OwerDTO"/>
<%
Vector vc=new Vector();
vc=ower.selectAll();
Object[] temp1=vc.toArray();
String[][] vetContent=new String[vc.size()][3];
for(int i=0;i<vc.size();i++)
{
String[] arr2=new String[vc.size()];
arr2=(String[])temp1[i];
for(int j=0;j<arr2.length;j++)
{
vetContent[i][j]=arr2[j];
}
}
%>
<html>
<head>
<title>
owersearch_name
</title>
</head>
<body bgcolor="#ffffff">
<jsp:include flush="true" page="owersSearch.jsp"/>
宠物主人信息如下:
<hr />
<form method="post" action="">
<table>
<tr>
<th><label>宠物名称</label></th>
<th><label>宠物主人</label></th>
<th><label>宠物类型</label></th>
</tr>
<tr>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -