• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

pageEnconding attribute?

 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all
i have two questions:
1- is pageEnconding is a valid attribute of page directive?
2-Attribute flush of jsp include action is a mandatory attribute?
thanks.
 
Sheriff
Posts: 17644
300
Mac Android IntelliJ IDE Eclipse IDE Spring Debian Java Ubuntu Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Originally posted by darine darine:
>>> 1- is pageEnconding is a valid attribute of page directive?
As of JSP 1.2 specification, yes. It's not in the JSP 1.1 syntax card (see syntax cards for JSP 1.1 and JSP 1.2 athttp://java.sun.com/products/jsp/technical.html ). Make sure your Servlet/JSP engine supports JSP 1.2
>>> 2-Attribute flush of jsp include action is a mandatory attribute?
In JSP 1.1, flush is mandatory and the only valid value is "true"
In JSP 1.2, flush is optional and the default value is "false"
Again refer to the references cited above.
HTH
Junilu

[This message has been edited by JUNILU LACAR (edited December 01, 2001).]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic