I am working on a asp.net project(using language c#).
In which I want to open a blank excel file in front of user at run time,So that user can create Column according to his requirement..after creating column he can also able to fill data in that excel file..
Na Finally on the click of save button(which will be on that .aspx page only) that excel file should be save on the hard disk...
Please tell me if any other solution for this type of requirement...so that user can feal compatible just like he use Microsoft Excel sheet..
Any solution to this is highly appreciable..
Thanks In Advance
jitendra kumarPosted Feb 16, 2010, 2:38 PM
1)http://www.c-sharpcorner.com/UploadFile/ggaganesh/CreateExcelSheet12012005015333AM/CreateExcelSheet.aspx
2) http://www.eggheadcafe.com/articles/20021012.asp
Amit ChoudharyPosted Feb 11, 2010, 6:14 AM
It is possible to do this task using c# but
you can not make the user to create an excel file using you asp.net website. Currently you are developing the project and running your project on probably asp.net development server. when you host it on IIS server on different machine then the program will open the excel file on the Server not on the User requested the Excel file. and if you use ActiveX library in javascript then what if user's PC does not have MS-Excel installed.
so better you do it in Windows Application to perform your task using asp.net website it'nt recommended.
Please mark the answer if it helps.