chat.jsp

来自「实现聊天的各个功能」· JSP 代码 · 共 21 行

JSP
21
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" %>
<% request.setCharacterEncoding("gb2312"); %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>聊天室</title>
</head>

<frameset rows="80,*,78" cols="*" frameborder="NO" border="3" framespacing="0">
  <frame src="top.jsp" name="topFrame" scrolling="NO">
  <frameset rows="*" cols="*,126" framespacing="0" frameborder="yes" border="3">
    <frame src="main.jsp" name="mainFrame" frameborder="yes" scrolling="NO" noresize marginwidth="1" marginheight="1" bordercolor="#CCCCCC">
    <frame src="right.jsp" name="rightFrame" frameborder="yes" scrolling="no" noresize>
  </frameset>
  <frame src="bottom.jsp" name="bottom" frameborder="yes" scrolling="no" noresize bordercolor="#D6D3CE">
</frameset>
<noframes>
<body>
</body></noframes>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?