• 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

XML Equivalent Tags.

 
Ranch Hand
Posts: 395
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
For JSP Directives, The XML equivalent tags are..
<jsp irective.page PageAttributes />
<jsp irective.invluce IncludeAttributes />
for Taglib directive,
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns :p refix1="mytag"
version="1.2">
....
</jsp:root>
Am I right?
Cheers.
[ June 13, 2002: Message edited by: Lakshmeenarayana Goundalkar ]
 
Ranch Hand
Posts: 1011
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are almost right.
These XML formatted syntax should be case-senstive and you need get rid of some extra spaces.
<jsp irective.page PageAttributes/>
<jsp irective.include IncludeAttributes/>
For Taglib directive,
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns refix1="mytag"
version="1.2">
....
</jsp:root>
 
PI day is 3.14 (march 14th) and is also einstein's birthday. And this is merely a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic