SpreadsheetGear® 2009
ASP.NET
Send Feedback
Tutorials > ASP.NET

Glossary Item Box

Follow these steps to generate a simple Excel Report from ASP.NET using SpreadsheetGear 2009

Create a new ASP.NET Web Site

  1. Launch Visual Studio 2005 or Visual Studio 2008.
  2. On the File menu, point to New and click Web Site. The New Web Site dialog box appears.
  3. Under Templates, click ASP.NET Web Site.
  4. Change the Location as desired and set the Language to Visual C#.
  5. Click OK to create the web site.

Add a reference to SpreadsheetGear 2009

  1. In Solution Explorer, select the web site you just created.
  2. On the Website menu, click Add Reference. The Add Reference dialog box appears.
  3. In the Add Reference dialog box, click the .NET tab. A list of .NET components appears.
  4. In the list of .NET components, click SpreadsheetGear 2009.
  5. Click OK to add the reference. 

Add code to create a workbook and return the workbook to Excel on the client

  1. In Solution Explorer, right click on Default.aspx and choose View Markup.
  2. Replace the Default.aspx markup with:
  3. Simple ASP.NET Excel Report using SpreadsheetGear 2009 Copy Code
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
    <
    !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <
    title>My First ASP.NET Excel Report</title>
    <
    script language="C#" runat="server">
    void Page_Load(Object sender, EventArgs e)
    {
     // Create a new workbook.
     SpreadsheetGear.IWorkbook workbook = SpreadsheetGear.Factory.GetWorkbook();
     SpreadsheetGear.IWorksheet worksheet = workbook.Worksheets["Sheet1"];
     SpreadsheetGear.IRange cells = worksheet.Cells;
     // Set the worksheet name.
     worksheet.Name = "2005 Sales";
     // Load column titles and center.
     cells["B1"].Formula = "North";
     cells["C1"].Formula = "South";
     cells["D1"].Formula = "East";
     cells["E1"].Formula = "West";
     cells["B1:E1"].HorizontalAlignment = SpreadsheetGear.HAlign.Center;
     // Load row titles using multiple cell text reference and iteration.
     int quarter = 1;
     foreach (SpreadsheetGear.IRange cell in cells["A2:A5"])
       cell.Formula = "Q" + quarter++;
     // Load random data and format as $ using a multiple cell range.
     SpreadsheetGear.IRange body = cells[1, 1, 4, 4];
     body.Formula = "=RAND() * 10000";
     body.NumberFormat = "$#,##0_);($#,##0)";
     // Stream the Excel spreadsheet to the client in a format
     // compatible with Excel 97/2000/XP/2003/2007.
     Response.Clear();
     Response.ContentType = "application/vnd.ms-excel";
     Response.AddHeader("Content-Disposition", "attachment; filename=report.xls");
     workbook.SaveToStream(Response.OutputStream, SpreadsheetGear.FileFormat.Excel8);
     Response.End();
    }
    </script>
    </
    head>
    <
    body>
    <
    form id="form1" runat="server">
    <
    div>
    </
    div>
    </
    form>
    </
    body>
    </
    html>

Run the web page

  1. Right click on the markup of Default.aspx and choose View in Browser.
  2. Internet Explorer will be launched and a "File Download" dialog box will ask whether you want to open or save the file.
  3. You may have different results with older versions of Internet Explorer or Excel, or if Internet Explorer or Excel settings have been changed.
Copyright © 2003-2009 SpreadsheetGear LLC. All Rights Reserved.Help Powered by Innovasys   
SpreadsheetGear is a registered trademark of SpreadsheetGear LLC.
Microsoft, Microsoft Excel and Visual Studio are trademarks or registered trademarks of Microsoft Corporation.