📄 head_discussform.jsp~5~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.ArrayList" %>
<html>
<head>
<title>
head_discussForm
</title>
</head>
<jsp:useBean id="operation" scope="session" class="OperationDB.operation">
</jsp:useBean>
<body bgcolor="#ffffff">
<%
ArrayList list=operation.finddiscussid(Integer.parseInt(request.getParameter("id")));
for(int i=0;i<list.size();i++){
ActionForm.discussActionForm daf=(ActionForm.discussActionForm)list.get(i);
%>
<table width="373" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="21" align="right"><%out.println("<p align=left> <img src='myimage/icon.gif' width=10 height=10 alt=''>"+daf.getDiscussTitle()+"</p>");%></td>
</tr>
</table>
<table width="373" border="1" cellpadding="1" cellspacing="1" >
<tr>
<td valign="top" ><%=daf.getDiscussContent()%></td>
</tr>
</table>
<%}%>
<table width="373" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="48" align="right"><div align="center"><a href="#" onclick="javascript:history.go(-1);"><img src="myimage/back.gif" width="51" height="20" alt=""></a></div></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -