Click here to Skip to main content
15,885,435 members
Articles / Web Development / ASP.NET

Reusable Class to Generate Excel Files

Rate me:
Please Sign up or sign in to vote.
4.92/5 (11 votes)
20 Mar 2009CPOL3 min read 60.2K   740   62  
A class that generates an XML string as an Excel file
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ExcelGeneratingClass
{
    class Program
    {
        static void Main(string[] args)
        {
            ExcelDatasetDemo.CreateReport();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Mexico Mexico
Sergio has been working as a software developer since 2002 in several industries such as Insurance, Health, and Oil. He is an MCAD and most likely will be looking to upgrade his certification soon.

He currently lives in Montreal, Canada.

Comments and Discussions