- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What happens when buffer is set to a value "none" in JSP?
The buffer attribute specifies the buffering characteristics for the server output response object.
You may code value of "none" to specify no buffering so that the servlet output is immediately directed to the response object or you may code a maximum buffer size in kilobytes, which directs the servlet to write to the buffer before writing to the response object.
To direct the servlet to write the output directly to the response output object, use the following −
<%@ page buffer = "none" %>
- Related Articles
- What is a buffer attribute in JSP?
- What happens when a negative value is inserted to UNSIGNED column in MySQL?
- What happens when length of object is set to 0 - JavaScript?
- How to set MySQL default value NONE?
- What happens when JDialog is set with Modality type APPLICATION_MODAL
- What happens when you add a double value to a String in java?
- What happens when JDialog is set with Modality type MODELESS in Java
- What happens when we try to add a number to undefined value?
- What happens when iron is heated?
- What happens when sugar is heated?
- What happens when nitric acid is added to eggshell?
- What happens chemically when quicklime is added to water filled in a bucket?
- What happens when a subclass object is assigned to a superclass object in Java?
- What happens when a copper plate is dipped in dilute acid?
- What happens when egg shell is added to Nitric Acid?

Advertisements