i have a url when i click on it i get windows asking me what to open it in and it recommends excel.
I now want to read this csv data dynamically in a c# application. what is the best way of getting csv data from Http Request to a url?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For HTTP, use either the
WebClientorWebRequest/WebResponseclasses.For parsing the CSV file itself, these suggestions should help.