I want to create a ASP.NET application which will fetch and store data from excel. For eg. currently i have automated excel reports using VBA and Macros, and user have to oem all the excels to get the data/charts/tables. All i want to let them open an asp.net application and from there only they can fetch reports, edit the reports and save the data and my excel will be used as DB. Please suggest is it's possible and if possible.
Take the 2-minute tour
×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
|
As far as extracting the excel spreadsheet data you can take a look at this post to see a couple alternatives. As far as getting around the concurrent access issue, you can store the excel information in some form of multi-user concurrent persistant storage - could be on disk or in-memory store (sql server, couchbase, memcache, etc...) and then access information from that store on user request. |
|||||||||
|