Re: Problem in Mozilla for Displaying text from XSL variable

[email protected] Thu, 5 Jun 2008 00:37:45 -0700 (PDT)
Newsgroups gmane.comp.mozilla.devel.layout.xslt
Organization http://groups.google.com
Message-ID <a4745b66-8ef6-4fb3-ab80-05549f19d622@w34g2000prm.googlegroups.com>
On Jun 2, 5:13 pm, Martin Honnen <[email protected]> wrote:
> [email protected] wrote:
> > can u give me your mail id so that i can send you my XML files along
> > with XSL file??
>
> i don't want your files by email. Post a URL or post the relevant stuff
> (xsl:stylesheet element and xsl:output elements here).
>
> --
>
>         Martin Honnen
>        http://JavaScript.FAQTs.com/

Ok,
Problem has been resolved.
Now i have one more problem
in my XML file i have CData like this

<college name="JDSVM" id="121" >
      <![CDATA[
             53           26100
]]>
      <Comment>
        <![CDATA[
 front jounce bumper

]]>
</college>

in my XSL file, for taking the value of name and iid, i used
<xsl:value-of select="college/@name"/>
<xsl:value-of select="college/@id"/>

now for selecting the above CDATA section i used
<xsl:value-of select="college/."/>

but this line show CDATA sections along with Comment part, it looks
like this...
53           26100  front jounce bumper

can u tell me how can we select only <b> 53           26100 </b> part?