Telmo S� wrote:

> Hi!
> Are the tags writen in the subject JSP native code?
> I'm sorry if it sems a stupid question. I'm only asking because i could not
> find anything refering to this in the JSP spec.
> Thank you!
>
>         Telmo
>

It is not defined in the specification because it is up to each individual
JSP engine to decide how to implement these tags.  Generally, you will find them
implemented as method calls to built in library classes (Java code) -- for most
JSP engines, you can ask the compiler to leave the generated Java source code
available, so you can take a look at what is going on.

As of JSP 1.1, you can also define and write your own custom tags, implementing
them in Java.  As long as you follow a standard interface, your tag will work in
any JSP 1.1 compliant servlet environment.

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to