how can i display excel sheets on my aspx page for data entry from users and save these value in sql database...
i am using the SQL dataabse 2005, Visual Studio 2008 with C#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
paul danielPosted Jan 18, 2010, 11:55 PM
Refer this link
http://www.beansoftware.com/asp.net-tutorials/generating-excel-reports.aspx
Andrew FensterPosted Jan 18, 2010, 11:35 PM
There are lots of articles about how to use Excel or Word on the fly inside a web application. Microsoft, however, recommends that you NOT do this. See http://support.microsoft.com/kb/257757 . The big problem is that this causes memory leaks, slow performance and crashes. So Nikhil's suggestion is correct. Have them enter the data in a GridView or other data control.