notice3.jsp
来自「这是一本介绍JSP技术的资料」· JSP 代码 · 共 51 行
JSP
51 行
<%@ page session="true" language="java" import="java.util.*" contentType="text/html;charset=gb2312" %>
<html>
<head>
<title></title>
</head>
<body>
<%
int n1;
String username1;
String question1;
String number1=(String)application.getAttribute("number");
n1=Integer.parseInt(number1);
%>
<div align="center">
<h2>欢迎使用《网站设计与管理》学习交流平台!</h2>
<h3>本学习交流平台目前记录了<%=n1 %>条记录.具体如下:</h3>
<table width="500" height="80" border="1" bordercolor="#999999">
<tr>
<td height="50"><div align="center" class="STYLE7">问题/解答</div></td>
<td width="100" height="50"><div align="center" class="STYLE7">发言人</div></td>
</tr>
<%
int i;
for(i=1;i<=n1;i++){
number1=number1.valueOf(i);
username1=(String)application.getAttribute("username"+number1);
question1=(String)application.getAttribute("question"+number1);
%>
<tr>
<td> <%=question1 %></td>
<td width="100"> <%=username1 %></td>
</tr>
<%} %>
</table>
<h3> </h3>
<h3> </h3>
<h3> </h3>
<h3><a href="notice1.jsp">提问/解答</a></h3>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?