//ConditionalForwardUsingEL.html This is Conditional Forward using EL
Enter your name :
Enter the password:

//ConditionalForwardUsingEL.jsp Conditional Forward By using EL <% if(request.getParameter("username")==null || request.getParameter("username").equals("")) {%> <%} else { %> Hello : ${param.username} ! How are you. <% } %>