Im trying to create a web service which gets to a URL e.g. www.domain.co.uk/prices.csv and then reads the csv file. Is this possible and how? Ideally without downloading the csv file?
Im trying to create a web service which gets to a URL e.g. www.domain.co.uk/prices.csv
Share
You could use:
And then to split it:
Though there are plenty of CSV parsers out there and i would advise against rolling your own. FileHelpers is a good one.