jsp用session实现计数

比如我做了一个按钮,如何实现,统计我点了多少次这个摁钮?... 比如我做了一个按钮,如何实现,统计我点了多少次这个摁钮? 展开
 我来答
訾岚宰白云
2019-12-12 · TA获得超过3908个赞
知道大有可为答主
回答量:3187
采纳率:24%
帮助的人:214万
展开全部
1234567891011121314151617181920212223242526session写的简单计数器---摘自互联网<%@ page errorPage="errorpage.jsp" %><html><head><title>UseSession</title></head><body><%// Try and get the current count from the sessionInteger count = (Integer)session.getAttribute("COUNT");// If COUNT is not found, create it and add it to the sessionif ( count == null ) {count = new Integer(1);session.setAttribute("COUNT", count);}else {count = new Integer(count.intValue() + 1);session.setAttribute("COUNT", count);} // Get the User's Name from the requestout.println("<b>Hello you have visited this site: "+ count + " times.</b>");%></body></html>
你最善良shine
推荐于2016-08-18 · 超过10用户采纳过TA的回答
知道答主
回答量:21
采纳率:100%
帮助的人:17.4万
展开全部
session写的简单计数器
---摘自互联网
<%@ page errorPage="errorpage.jsp" %>
<html>
<head>
<title>UseSession</title>
</head>
<body>
<%
// Try and get the current count from the session
Integer count = (Integer)session.getAttribute("COUNT");
// If COUNT is not found, create it and add it to the session
if ( count == null ) {
count = new Integer(1);
session.setAttribute("COUNT", count);
}
else {
count = new Integer(count.intValue() + 1);
session.setAttribute("COUNT", count);

// Get the User's Name from the request
out.println("<b>Hello you have visited this site: "
+ count + " times.</b>");
%>
</body>
</html>
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式