ciao a tutti,

sto sviluppando un allpicazione web con vb.net in cui ho un system.Web.UI.WebControls.Xml in gli passo un xslt che deve leggere un xml dal web.

il mio xml è in qusto indirizzo

http://punto-informatico.it/fader/pixml.xml

e il mio xslt è così

codice:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<?xml-stylesheet href="Styles.css" type="text/css" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="UTF-8"/>

<xsl:template match="/">
ciao1
	<xsl:apply-templates select="Rss/channel/item"/>
ciao 2
</xsl:template>

<xsl:template match="item">
				<xsl:value-of select="title"  disable-output-escaping="yes"/>		
				
</br>
</xsl:template>
</xsl:stylesheet>
è giusto che sia così.. perchè il ciao 1 e il ciao 2 mi si inseriscono... però solo una volta, e non mi entra in <xsl:template match="item">...