JSP制作简单的聊天室,如何实现清屏?
使用jsp制作了简单的聊天室之后,由saveNote:<body><%Strings=request.getParameter("txtContent");s=newSt...
使用jsp制作了简单的聊天室之后,由saveNote:
<body>
<%
String s = request.getParameter("txtContent");
s = new String(s.getBytes("ISO-8859-1"),"GB2312");
String name = (String)session.getAttribute("CUR_USER");
String addr = (String)session.getAttribute("ADD_USER");
String org = (String)application.getAttribute("ALL_MSG");
application.setAttribute("ALL_MSG",name+"("+addr+")"+":"+s+"<br>"+org);
response.sendRedirect("editNote.jsp");
%>
</body>
跳转到dispNote进行显示:
<body>
<%
try {
String s = (String)application.getAttribute("ALL_MSG");
out.print(s);
}
catch(Exception e) {
;
}
%>
</body>
问题是如何在对话过多的时候,建立一个clear.jsp进行清屏?运行clear.jsp使得显示的内容清空?
clear.jsp和dispNote.jsp代码如何设置? 展开
<body>
<%
String s = request.getParameter("txtContent");
s = new String(s.getBytes("ISO-8859-1"),"GB2312");
String name = (String)session.getAttribute("CUR_USER");
String addr = (String)session.getAttribute("ADD_USER");
String org = (String)application.getAttribute("ALL_MSG");
application.setAttribute("ALL_MSG",name+"("+addr+")"+":"+s+"<br>"+org);
response.sendRedirect("editNote.jsp");
%>
</body>
跳转到dispNote进行显示:
<body>
<%
try {
String s = (String)application.getAttribute("ALL_MSG");
out.print(s);
}
catch(Exception e) {
;
}
%>
</body>
问题是如何在对话过多的时候,建立一个clear.jsp进行清屏?运行clear.jsp使得显示的内容清空?
clear.jsp和dispNote.jsp代码如何设置? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询