Jul 6, 2004 #1 Forri Programmer Joined Oct 29, 2003 Messages 479 Location MT Hi I have this line which is giving me problems when i try to show the xml! Code: <Link>index.php?pageid=appl[b]&type=0[/b]</Link> The bold part is the problem! any ideas why and how can i solve it! Thanks Nick
Hi I have this line which is giving me problems when i try to show the xml! Code: <Link>index.php?pageid=appl[b]&type=0[/b]</Link> The bold part is the problem! any ideas why and how can i solve it! Thanks Nick
Jul 6, 2004 #2 simonchristieis Programmer Joined Jan 10, 2002 Messages 1,144 Location GB I think you need to encode the ampersand: try this & Upvote 0 Downvote
Jul 6, 2004 #3 bettyboo1701 Programmer Joined Jul 6, 2004 Messages 3 Location DE Hi, the & is the problem //first: declare output is html <xslutput method="html" /> //then in between your link statement <xsl:text disable-output-escaping="yes">&</xsl:text> that is & in ascii cu bettyboo Upvote 0 Downvote
Hi, the & is the problem //first: declare output is html <xslutput method="html" /> //then in between your link statement <xsl:text disable-output-escaping="yes">&</xsl:text> that is & in ascii cu bettyboo
Jul 6, 2004 #4 bettyboo1701 Programmer Joined Jul 6, 2004 Messages 3 Location DE Hi, the & is the problem //first: declare output is html <xslutput method="html" /> //then in between your link statement <xsl:text disable-output-escaping="yes">&</xsl:text> that is & in ascii cu bettyboo Upvote 0 Downvote
Hi, the & is the problem //first: declare output is html <xslutput method="html" /> //then in between your link statement <xsl:text disable-output-escaping="yes">&</xsl:text> that is & in ascii cu bettyboo