Read an Excel file uploaded using FileUpload Control without saving it on the server

后端 未结 4 1663
陌清茗
陌清茗 2020-12-23 14:47

Need to be able to read an Excel file uploaded using FileUploadControl in ASP.NET. The solution will be hosted on a server. I do not want to store the Excel file on the serv

4条回答
  •  一整个雨季
    2020-12-23 15:19

    Maybe you can take a look at Koogra this is an Open Source excel reader (readonly no writer) I think you will get a stream back from the client. Then you can do all your things like you're doing now Read from memorystream and write to Database.

    I hope this helps.

提交回复
热议问题