• 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

about <body-content> of tag

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, I couldn't write the code to test it myself. Some problems on my laptop.



Suppose body-content of a tag is tagdepedent

<body-content> tagdependent <body-content>


If Scriptlet or EL is passed as the body, what will happen? The Scriptlet or EL will be treated as text or Error?



similar question. body-content of a tag is scripless

<body-content> scriptless <body-content>

If Scriptlet is passed as the body, what will happen? The Scriptlet will be treated as text or Error?






 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


<body-content> tagdependent <body-content>
If Scriptlet or EL is passed as the body, what will happen? The Scriptlet or EL will be treated as text or Error?


The content of the body will be passed as text. You will have to interpret the content the way you want to.


<body-content> scriptless <body-content>
If Scriptlet is passed as the body, what will happen? The Scriptlet will be treated as text or Error?


This will raise an error. Scriptlets cannot be used with a scriptless body content.
 
Tony suankularb
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you, Verré
 
Poop goes in a willow feeder. Wipe with this 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