How to stop the creation of implicit session object in the jsp page ?
Why to stop the creation ? and when to stop the creation ?
By using the page directive tag attributes u cab stop the creation of implicit object creation like below
<%@ page session="false" %>
remember that by default this attribute has the value true, means if don't specify any thing session object will be created by jsp engg.
<%@ page session="false" buffer="12kb" %> , this tag will set the size of the out implicit object
Why to stop the creation ? and when to stop the creation ?
By using the page directive tag attributes u cab stop the creation of implicit object creation like below
<%@ page session="false" %>
remember that by default this attribute has the value true, means if don't specify any thing session object will be created by jsp engg.
<%@ page session="false" buffer="12kb" %> , this tag will set the size of the out implicit object
No comments:
Post a Comment