1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <jsp:useBean id="tl" scope="application" class="java.util.LinkedList"></jsp:useBean>
<%
String topic = (String)request.getParameter("topic");
if (topic != null && !topic.equals(""))
{
tl.add(topic);
}
%>
<div>
<% for(Object obj : tl)
{
String str = (String)obj;
%>
<div><%=str%><div/>
<% } %>
</div>
<form action="saveXSS.jsp" method="post">
评论:<input type="text" name="topic"/><br>
<input type="submit" value="提交"/>
</form>
|