chatframe.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"
  2. import = "java.io.*"
  3. import = "cn.js.fan.util.*"
  4. import = "java.net.URLEncoder"
  5. %>
  6. <%
  7. String nick,room;
  8. nick = ParamUtil.get( request, "nick" );
  9. room = ParamUtil.get( request, "room" );
  10. %>
  11. <html>
  12. <head>
  13. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
  14. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  15. <meta name="ProgId" content="FrontPage.Editor.Document">
  16. <title>聊天室</title>
  17. <SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
  18. <!--
  19. //分屏
  20. var issplit = false
  21. function split()
  22. {
  23.         issplit = !issplit
  24.         if (issplit)
  25.                 splitframe.rows = "*,50%"
  26.         else
  27.                 splitframe.rows = "*,0%"
  28. }
  29. function getissplit()
  30. {
  31.         return issplit
  32. }
  33. //-->
  34. </SCRIPT>
  35. </head>
  36. <frameset rows="83%,*" framespacing="0" border="0" frameborder="0">
  37.   <frameset cols="*,19%">
  38.     <frameset rows="*,40">
  39.       <frameset id="splitframe" rows="*,0" framespacing=1>
  40.       <frame name="showchatarea" src="showchat.htm" scrolling="auto">
  41.       <frame name="secretarea" scrolling="auto" src="secret.htm" marginwidth="0" marginheight="0">
  42.       </frameset>
  43.       <frame name="chatappletarea" src="chatapplet.jsp?nick=<%=StrUtil.UrlEncode(nick)%>&room=<%=StrUtil.UrlEncode(room)%>" scrolling="auto">
  44.     </frameset>
  45.     <frame name="nickarea" src="nicklist.htm" scrolling="auto">
  46.   </frameset>
  47.   <frame name="talkarea" src="talk.jsp" scrolling="no">
  48.   <noframes>
  49.   <body>
  50.   <p>此网页使用了框架,但您的浏览器不支持框架。</p>
  51.   </body>
  52.   </noframes>
  53. </frameset>
  54. </html>