As the title says, I need to convert an external CSV to an internal XML by using XSLT.
I've been looking all over Google for a way to do this. However, all I can find are codes which use an internal CSV; Something I'm not allowed to use.
I cannot give you the contents of the CSV due to sensitive company property, but I was hoping that somebody would be able to explain to me how it works.
Let's use this as an example CSV, found this fictional link:
www.examplecvs.nl/nl/affiliates/feed.csv
"Name", "Age", "Gender" "Rick", "21", "Male"
How could I make an internal XML out of this external CSV?
If so you could write an extension method in C# that would parse the CSV to XML that would then be returned to your XHTML page as XML that you could then render. Charlie :)
Converting external CSV to internal XML with XSLT
As the title says, I need to convert an external CSV to an internal XML by using XSLT.
I've been looking all over Google for a way to do this. However, all I can find are codes which use an internal CSV; Something I'm not allowed to use.
I cannot give you the contents of the CSV due to sensitive company property, but I was hoping that somebody would be able to explain to me how it works.
Let's use this as an example CSV, found this fictional link:
www.examplecvs.nl/nl/affiliates/feed.csv
"Name", "Age", "Gender"
"Rick", "21", "Male"
How could I make an internal XML out of this external CSV?
Hello :) are you able to attach the csv in Umbraco prehaps to the media folder?
If so you could write an extension method in C# that would parse the CSV to XML that would then be returned to your XHTML page as XML that you could then render. Charlie :)
is working on a reply...