-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessEmp.jsp
28 lines (26 loc) · 1.22 KB
/
ProcessEmp.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Employee Details</title>
</head>
<jsp:useBean id="EmpBeanObject" class="com.mycompany.employeeBeans" type="com.mycompany.employeeBeans"/>
<body>
<h1>Hello World!</h1>
<%
String first_name=request.getParameter("f_name");
String last_name=request.getParameter("l_name");
String designation=request.getParameter("posting");
%>
<jsp:setProperty name = "EmpBeanObject" property = "fname" value = "<%=first_name%>"/>
<jsp:setProperty name = "EmpBeanObject" property = "lname" value = "<%=last_name%>" />
<jsp:setProperty name = "EmpBeanObject" property = "post" value = "<%=designation%>" />
<% out.print("First Name> "); %>
<jsp:getProperty name = "EmpBeanObject" property ="fname" /><br><br>
<% out.print("Last Name> "); %>
<jsp:getProperty name = "EmpBeanObject" property ="lname" /><br><br>
<% out.print("Designation> "); %>
<jsp:getProperty name = "EmpBeanObject" property ="post" /><br><br>
</body>
</html>