vote up 0 vote down star
1

Hi,

I have a xml blob that's checked against a schema in sql 2005. My website uses xsl to transform and display the blob. How do I add a hyperlink to the xml (in any node) without the sql 2005 schema complaining a node was found in the wrong place? Or the xsl thinking that the hyperlink is a valid xml node?

thank you

flag

do you want to store the hyperlink in the database or do you want your xslt to show it as outpput? – Jasper Oct 3 '08 at 13:39

2 Answers

vote up 1 vote down check

I'm guessing you aren't encoding the < and > characters correctly. You need to use &lt; and &gt;

link|flag
<slaps forehead> awesome, thanks. – Paulj Oct 3 '08 at 13:41
No it's <slaps forehead> – Josh Nov 17 '08 at 21:40
vote up 2 vote down

For more advanced html building, you may need to use the xsl:element tag:

  <xsl:element name="a">
    <xsl:attribute name="href">http://www.stackoverflow.com</xsl:attribute>
    Click here
  </xsl:element>

renders

<a href="http://www.stackoverflow.com">Click here</a>

The nice thing about this is that the values for any of the "name" attributes or inner text can be computed xsl values.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.