I have XMl file that has various file attachments when the attachment is empty the xsi:nil="true" will be set so i want to read this attribute
1 Answer
You can use value-of to retrieve value in xslt.
<xsl:value-of select="nil" />
For more information on Setting and Getting value in XSLT, click here
-
I want to use the attribute in c# programming to validate my requirement could help to read this attribute in C#Venkatesh Kumar Balasubramani– Venkatesh Kumar Balasubramani2015-01-27 04:00:25 +00:00Commented Jan 27, 2015 at 4:00