Is there a way to load an Excel document in a web page and communicate with the excel control using code behind? (JavaScript or Asp.NET) ?
Share
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.
You can load the excel document through the office/excel interop libraries and communicate through that way. You could make the changes and push the Excel file to the browser.
Here is a link showing how to create an excel file using the interop assemblies:
http://msdn.microsoft.com/en-us/library/ms173186.aspx
Opening and manipulating excel documents through C#:
http://dotnetperls.com/excel-interop
You can’t load the file in the browser and then manipulate it through asp.net if that is what you are asking.