Hi,
I have a website developed using java/servlets. This site gets input from user.
And, now when an administrator logs in, I want to get the live user names printed on admin page when a new user gets added.
Typically, I would like to update the content of my HTML/JSP page without refreshing when a DB INSERT/UPDATE/DELETE occurs.
Can anyone help me to achieve this using Java/Servlets? if not please provide me an alternate solution.
Thanks
The above references gives me to get the data using AJAX. But, what I am looking for is that my page needs to be updated with the latest added users while the administrator is logged in and is in any of the page with admin rights.
Will be having a <DIV> to display the details of the newly added users.
I want this DIV to be updated whenever a new user is added or existing user update his details WITHOUT SENDING REQUEST TO SERVER explicitly.
Thanks.