I want to develop a tool using JSP that will track the number of visitors to any given page and the number of times that a url has been clicked upon. Can anybody please tell me how to manage this? Thanks a whole lot! Prasana
: I want to develop a tool using JSP that will track the number of visitors to any given page and the number of times that a url has been clicked upon. Can anybody please tell me how to manage this? : Thanks a whole lot! : Prasana : : Assuming that all your pages are JSP's. For the number of hits you can just make method that updates a file or database. As far as links. You can get that from Servlet. (request.getRequestURL()) Let me know if that works.
Comments
: Thanks a whole lot!
: Prasana
:
:
Assuming that all your pages are JSP's. For the number of hits you can just make method that updates a file or database. As far as links. You can get that from Servlet. (request.getRequestURL())
Let me know if that works.