开发者

Import excel file with asp.net

开发者 https://www.devze.com 2023-01-17 13:44 出处:网络
I\'m working on an asp.net /c# app I need my app to allow users to upload .XLS files (located on the user machine).

I'm working on an asp.net /c# app

I need my app to allow users to upload .XLS files (located on the user machine).

How can i read data from the .XLS file but withou开发者_Python百科t saving the file on server?

tks


In order to be able to do something with the file on the server (eg using ASP.net ) you will have to at least temporarily save the file on the server. Although an apache module might let you interupt the stream as it is uploaded, but thats probably a bit ott.

There MAY be something you could do in Javascript but I doubt it.


An idea would be to parse .csv files, if it possible. I can send example. Also you can parse .XLS files through interop excel dll. But it very slow method.

0

精彩评论

暂无评论...
验证码 换一张
取 消