Hi Guys,
Below is the question from enthuware about the <body-Content> tag.
Question:- Write the body value of <body-content> element for a tag that is supposed to be used with a body but the body is not interpreted by the tag handler.
Ans:- answer they provided is JSP or scriptless, but i think the answer should be tagdependent.
If the body needed to be interpreted by the tag, you would set the body-content to "tagdependent". Setting it to "JSP" allows the container to interpret the content before passing it to the tag (the tag doesn't interpret it). "scriptless" tells the container that there is no script and that the content should be passed to the tag "as is" (the tag doesn't interpret it).