This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

tags?


Hola Isabella:

I'm not a guru but I CAN rally understand your situation
in a hurry this can help you:

<xsl:text disable-output-escaping="yes">&#60;</xsl:text> prints <
<xsl:text disable-output-escaping="yes">&#62;</xsl:text> prints >

if trying to print more complex code this is usefull:

<script language="Javascript" type="text/javascript">
<xsl:comment><![CDATA[
 function asignaValor(){
  strOk = true;
  if(document.validar.title.value < 0){
   strOk = false;
   alert("bla bla bla");
  }
  return strOk;
 }
//]]></xsl:comment>
</script>

or:

<SCRIPT>
 <xsl:text><![CDATA[
 function .... < whatever code you want > using any character ><"" ' 
 ]]></xsl:text>
</SCRIPT>

a usefull url about xslt for inprove your knowledge about
check it out before post a new thread
http://www.dpawson.co.uk/xsl/sect2/sect21.html


(I've send some mails to your personal mail but don't know if you have reade them)
hasta la proxima

Aniceto Lopez
www.laMundial.net
download our music for free

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]