So I have a list in SP2007 and I have a column that has links in it. When I try to pull that into a table on the page using XSLT I get some weird output. Here's my code:
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="@Video_x0020_Url"/>
</xsl:attribute>
<xsl:value-of select="@Video_x0020_Url"/>
</xsl:element>
Here's what gets output to the page:
<div class=ExternalClass44B1B026A92E4DD59B08DA704C4558B1>http://google.com</div>
I am just using google.com as a placeholder link. We want to add a link to a video but it throws in the div class around it. And the link is broke. It doesn't go to Google.com. Any idea how to get rid of that? Thanks!