How to conditionally display elements of JSP page depending on user role
How to load menu on webpage depends upon login user? I want to make websites where some menu will show before login and after login it will show more menu depends upon login user if admin is login then some administraive menu will appear if normal user is login then some different menu will be added. I want to build this project using JSP/Servlet. When user click on any menu total page will not be reloaded only some part will be changed where show the details description of this menu. BalusC You can just use JSTL to programmatically control the flow in the HTML output of the JSP. You can check