mausam
Posts: 243
Nickname: mausam
Registered: Sep, 2003
|
|
Re: Conter for Page Hits
|
Posted: Jan 19, 2004 5:22 AM
|
|
for a session, can use this programme
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class SimpleCounter extends HttpServlet {
int count = 0;
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
res.setContentType("text/plain");
PrintWriter out = res.getWriter();
count++;
out.println("Since loading, this servlet has been accessed " +
count + " times.");
}
}
for lifetime...set this counter in the database and retrive it from database on each request
|
|