Ashish Kumar wrote:
2) I have to pass second parameter from a simple query, where I m using
the line:

<xsl:attribute name="HREF">&c_code=<xsl:value-of

Please remember that "&" starts an entity in XML. Exactly for this reason there is an entity representing "&": "&amp;"

Hence the above code will complain about an error in the naming of
an entity since it considers &c_code (missing ";") as such. Replace with
&amp;c_code= and all'll be fine.

Chris.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to