i ma usin gthe extension object in XSLT and then passing a string to XSLT like this
and then using it in XSLT like this
<xsl:value-of select="RDisc:G etAllData()" />
but is showing data in one line also included the <br> how i can solve this. I have also tried as
all +=<br>
Code:
for(int i=0;i<xmlnode.Count;i++)
{
XmlAttributeCollection xmlattrc = xmlnode[i].Attributes;
all += "<br>";
all += xmlattrc[0].Name;
all += xmlattrc[0].Value;
all += "<br>";
all += xmlnode[i].FirstChild.Name;
all += xmlnode[i].FirstChild.InnerText;
all += xmlnode[i].LastChild.Name;
all += xmlnode[i].LastChild.InnerText;
}
return all;
<xsl:value-of select="RDisc:G etAllData()" />
but is showing data in one line also included the <br> how i can solve this. I have also tried as
all +=<br>
Comment