buffer attribute in JSP page directive
This attribute is used to define the buffer size. Syntax: < Example: welcome.jsp <%@ page buffer="32kb" %> <html> <head> <title>buffer page directive example</title> </head> <body> <h3>Hello this is a buffer page directive example.</h3> </body> </html><%@ page buffer="32kb" %> <html> <head> <title>buffer page directive example</title> </head> <body> <h3>Hello this is a buffer page directive example.</h3> … Read more