我想在我的 JSP 中添加更新功能。我已经添加了所有功能,例如添加,删除,更新所有功能都可以正常工作。包含搜索功能,但是当我点击搜索功能时,如果在 JSP 页面中未显示的数据库中找到数据。其他部分正在显示。任何人都可以帮助解决问题吗?我在下面添加了代码。
<%
if (request.getAttribute("dName") != null) {
out.println("Your query is Found");
String dName = (String) request.getAttribute("dName");
String dId = (String) request.getAttribute("dId");
out.println("Department Name:" + dName);
out.println("Department Id:" + dId);
request.setAttribute("dName", null);
request.setAttribute("dId", null);
} else {
out.flush();
out.println("dhfdhfj");
}
%>