> > basically what i'm needing is a way to escape the
> > "%", "*", ">", and "<" chars in the jsp so the browser doesn't interpret

If you just want to escape literal characters in a jsp page, use the
standard HTML entities such as &nbsp; etc...

http://www.w3.org/TR/html4/sgml/entities.html

So, your examples above would be:

&lt; - <
&gt; - >
&lowast; - *

_3
M

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to