Hello there!
I am pretty new to xml and xsl. I have been trying to achive a dynamic link creation. My xml file has the format like;
<root>
<customer>company_name</customer>
<id>2334</id>
<code>xsTu4</code>
<mail>info@comany.com</mail>
</customer>
</root>
I want to use an XSL file to give me a link like detail.aspx?id=2334
I have tried
<xsl:value-of select="id"/>
<a href="detay.aspx?id={id}">
<xsl:value-of select="company"/>
</a>
but didnt get what i need:( I need a company name with a link:) so I can post it to details.aspx page with the company id.
I am using <xsl:for-each select="/root/customer"> to get all the information as well.
So? any idea?