i have a jsp file with different div. First i display a div with login page after logged in it goes to servlet page and return back to same jsp page. My question how to display the different div after returning from the servlet?
how to display different div when i returned from servlet?
137 Views Asked by Hidden IVR King At
2
There are 2 best solutions below
0

Code snippets would have helped.
From what i get, you are trying to display the same JSP to the user, before & after logging him in, but providing a different view/div.
You can leverage the fact that once a user is logged-in, a flag/user object is usually added to the session/response(or you can add the same). You can then use this to block/display your div respectively.
First make the div display none Then send data using ajax to ur sevlet