Basically I have a customer who registers and writes the customers address to the uCommerce_address table. Now on the address.aspx/ addressinfo.xsl I want bring back the address information.
I've looked at <xsl:value-of select="CommerceLibrary:GetCurrentCustomer()/Addresses"/> but just returns nothing.
Display in XSL data in uCommerce_address table
Basically I have a customer who registers and writes the customers address to the uCommerce_address table. Now on the address.aspx/ addressinfo.xsl I want bring back the address information.
I've looked at <xsl:value-of select="CommerceLibrary:GetCurrentCustomer()/Addresses"/> but just returns nothing.
Anyone come across this or have any ideas?
Thanks in advance
Try outputting the XML structure
<textarea><xsl:copy-of select="CommerceLibrary:GetCurrentCustomer()/customer/addresses" /></textarea>
Thanks for helping, Oleg. Much appreciated!
is working on a reply...