How to read large excel file in asp.net c#? Actually i have a excel file with 10000 rows i have to read each 100 rows and process that rows is it possible in asp.net c#? i am planning to do it in a thread.
Asked
Active
Viewed 83 times
0
-
Please, try to add some code, and write what you have tried so far. It will help the community, and you will show that you actually spend some time to solve it. – Jacek Kowalewski Feb 09 '15 at 08:49
-
1What did you tried so far? Hint: Save as CSV format and use a File.ReadLines() to stream it, (instead of reading the whole file into memory) – Jeroen van Langen Feb 09 '15 at 08:50