Question: Given the two snippets of code, what will be displayed in the following scenario : (In Controller.java) request.getSession().setAttribute(data,dataBean); (In edit.jsp) Your hobby is ${param.hobby}
Given the two snippets of code, what will be displayed in the following scenario :
(In Controller.java)
request.getSession().setAttribute("data",dataBean);
(In edit.jsp)
<html>
<body>
Your hobby is <p>${param.hobby}</p>
</body>
</html>
Step by Step Solution
3.43 Rating (159 Votes )
There are 3 Steps involved in it
The question is incomplete because it lacks information o... View full answer
Get step-by-step solutions from verified subject matter experts
