2007/5/18, AM101 <[EMAIL PROTECTED]>:


I am sorry I am not sure what do you mean, can you please explain?



you wrote :

value="</div>"

This is not XML compliant, since the "<" and ">" characters are used to
delimit tags.
Instead you have to use the corresponding XML entities. In other words
change your code to:

value="&lt;/div&gt;"

where &lt; is < and &gt; is >

HTH
Antonio

Reply via email to