Guest 22 25th Feb, 2025
<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Search Form</title> </head> <body> <form action="search" method="get"> ID: <input type="number" name="id"></br> Name: <input type="text" name="name"></br> Department: <select name="did"> <option value="0">-ALL-</option> <c:forEach> </c:forEach> </select> </form> </body> </html>
No description