chatroom.jsp
来自「《jsp网站开发技术》中的源代码(清华大学出版社)」· JSP 代码 · 共 24 行
JSP
24 行
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<%@ page session="true" %>
<%@ page contentType="text/html;charset=gb2312" %>
</head>
<frameset frameborder="0" border="0" framespacing="0" rows="80,*,120">
<frame name="topFrame" scrolling="no" noresize src="top.html">
<frameset frameborder="0" border="0" framespacing="0" cols="120,*,10">
<frame name="userlistFrame" src="userlist.jsp">
<frame name="mainFrame" src="main.jsp">
<frame name="hiddenFrame" src="hidden.jsp">
</frameset>
<frame name="inputFrame" scrolling="auto" src="input.jsp?username=<%= session.getValue("Name") %>">
<noframes>
Please user a frame enabled browser!
</noframes>
</frameset>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?