March 26, 200322 yr Newbies HI I have the following XML source file which has to be converted into HTML file using XSL <?xml version="1.0"?> <root> <emailaddress> [email protected] </emailaddress> </root> i want to know how to provide a hyperlink for emailaddress using <a href="mailto:..." in the resulting HTML which will be generated by a XSL stylesheet. plz help cheers chirag
May 7, 200322 yr try: <a> <xsl:attribute name="href"><xsl:value-of select="emailaddress"></xsl:attribute> Email address </a>
Create an account or sign in to comment