博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Javaweb 实现一个简单留言板
阅读量:4926 次
发布时间:2019-06-11

本文共 1561 字,大约阅读时间需要 5 分钟。

<%@ page language="java" contentType="text/html; charset=utf-8"    pageEncoding="utf-8"%>    <%	String temp = new String();	temp = (String) application.getAttribute("num");	if (temp == null) {
application.setAttribute("num", "0"); }%>
Insert title here
用户:
留言:
<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"    pageEncoding="utf-8"%>
Insert title here <%request.setCharacterEncoding("utf-8"); %> <% int n; String temp1 = new String(); String temp2 = new String(); String temp3 = new String(); String temp =new String(); temp1 = request.getParameter("user"); temp2 = request.getParameter("liuyan"); temp3 =request.getRemoteAddr(); temp = (String)application.getAttribute("num"); n = Integer.parseInt(temp); n = n + 1; temp = temp.valueOf(n); application.setAttribute("num", temp); application.setAttribute("xingming" + temp, temp1); application.setAttribute("liuyan" + temp, temp2); application.setAttribute("ip"+temp,temp3); %> <% int i; for (i = 1; i <= n; i++) {
temp = temp.valueOf(i); temp1 = (String) application.getAttribute("xingming" + temp); temp2 = (String) application.getAttribute("liuyan" + temp); temp3 =(String) application.getAttribute("ip" + temp); %> <%=temp1%>@<%=temp3%>说: <%=temp2%>
<% } %>

转载于:https://www.cnblogs.com/ffgcc/p/10546320.html

你可能感兴趣的文章
LWP::UserAgent - Web user agent class Web 用户agent 类:
查看>>
zookeeper 手动T掉已挂节点
查看>>
apache commons io入门
查看>>
在OS X 10.9配置WebDAV服务器联合NSURLSessionUploadTask实现文件上传
查看>>
C语言位运算
查看>>
OSI七层协议模型、TCP/IP四层模型学习笔记
查看>>
windown vs2012 编译ffplay
查看>>
RTMP协议规范(转载)
查看>>
盘点那些大牌互联网公司内部使用的JavaScript库
查看>>
CentOS 7.0下使用yum安装MySQL
查看>>
vue初级学习--路由router的编写(resolve的使用)
查看>>
批处理学习01
查看>>
java 继承练习题5
查看>>
英媒:滴滴和优步每年烧钱64亿
查看>>
HTMLParser-简单HTML和XHTML解析
查看>>
Java_基础_关键字_volatile
查看>>
American Heritage usaco
查看>>
BZOJ 3689 异或之
查看>>
sublime运行错误
查看>>
vue中渲染页面,动态设置颜色
查看>>