I want to dispaly a result parameter which return from servlet to jsp after an event happen. so when i add new user for example a result parameter returns with value that the user has been added successfully , and i want to display the result in jsp page. i make like this in jsp page
<%String result = String.valueOf(request.getAttribute("result"));%>
<%if (result != null){%>
<%= result%>
<%}%>
THE PROBLEM is that every time i open the page for the first time result prints as null to the browser even i write if not null print result value, where is the problem ? can someone help/