login.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%
application.setAttribute("author", "Rupam Gupta"); application.setAttribute("country", "India");
%>
<!DOCTYPE html>
<html>
<head>
<title>Expression Language</title>
</head>
<body>
<form action="Show.jsp">
User First Name:<input type="text" name="uname"/><br> <br>
User Last Name:<input type="text" name="lname"/><br><br>
<input type="submit" value="Check EL Use!!"/>
</form>
</body>
</html>
0 Comments