I learned that template data should be preceded by
<jsp:text><![CDATA[ and followed by ]]></jsp:text>
and it works as expected.

Thank you.

--

On Sat, 5 Jan 2002 12:34:39   
 Craig R. McClanahan wrote:
>
>
>The basic issue is that you must conform to all XML syntax requirements in
>a JSP document.  Therefore, you will need to encapsulate the HTML parts of
>this page in <jsp:text> elements, something like this (not tested, so
>there might still be problems):
>
>  <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"; version="1.2">
>  <jsp:text>[CDATA[[
>  <html>
>  <head>
>  <title>test</title>
>  <body>
>  <form method="POST" action="]]</jsp:text>
>  <jsp:expression>request.getRequestURI()</jsp-expression>
>  <jsp:text>[CDATA[[">
>  <input type="text" name="textbox">
>  <input type="submit">
>  </form>]]</jsp:text>
>  <jsp:expression>request.getRequestURI()</jsp:expression>
>  <jsp:text>[CDATA[[<br>]]</jsp:text>
>  <jsp:expression>request.getParameter("textbox")</jsp:expression>
>  <jsp:text>




--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to