testStudentc.html The Compare
getStudentInfoallc.jsp
<%@ taglib uri="WEB-INF/mytags.tld" prefix="m" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<body>
<center><h1>Student Data</h1></center><hr />
<c:set var="thestudent" scope="page"><m:student_body>${param.name}</m:student_body></c:set>
<center><h1><c:out value="${thestudent}"/></h1></center><hr />
</body>
</html>
testStudentc.html
<html>
<body>
<form action="getStudentInfoallc.jsp" method="get">
Your Name:<input type="text" name="name"/><br/>
<input type="submit" value="submit"/>
</form>
</body>
</html>
What the Browser Saw