4-21.jsp
来自「石志国著《JSP应用教程》」· JSP 代码 · 共 20 行
JSP
20 行
<%@ page contentType="text/html;charset=GBK" %>
<HTML>
<BODY>
<%
if(application.getAttribute("chat")!=null){
if(request.getParameter("mywords")!=null){
String mywords = request.getParameter("mywords");
mywords = (String)application.getAttribute("chat") + "<br>" + mywords;
application.setAttribute("chat", mywords);
out.print((String)application.getAttribute("chat"));
}
}
%>
<FORM ACTION="4-21.jsp" METHOD="get">
<INPUT TYPE="TEXT" SIZE="30" NAME="mywords" VALUE="I LIKE CHAT">
<INPUT TYPE="SUBMIT" name="submit" VALUE="提交">
</FORM>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?