Click here to Skip to main content
Click here to Skip to main content

Display MS Excel Sheets and Charts in ASPX Pages using C#

By , 8 Nov 2006
 

Introduction

The purpose of this article is to show how to display the exact values in an Excel sheet, with its comments, in an aspx page. The code-behind file is in C#. The method shown here helps to display an Excel sheet with its formatting including the font, color, alignment etc. This will be very useful for developers who do MS Office automation. The pre-requisites are that in the DCOM CONFIG your Excel application should be given permissions to be accessed and loaded in the server system.

Sample Image - ExcelShtAndChrt-In-aspx.jpg

Conversion of the Excel formats require only a few lines of code. The format details include conversion of Excel attributes to .NET attributes, like Excel color to .NET Color.

/// <span class="code-SummaryComment"><SUMMARY>
</span>
/// Converts Excel Color to Dot Net Color
/// <span class="code-SummaryComment"></SUMMARY>
</span>
/// Excel Object Color
/// <span class="code-SummaryComment"><RETURNS>Returns System.Drawing.Color</RETURNS>
</span>
private System.Drawing.Color 
        ConvertExcelColor2DotNetColor(object objExcelColor)
{

    string strColor = "";
    uint uColor = 0;
    int nRed = 0;
    int nGreen = 0;
    int nBlue = 0;

    strColor = objExcelColor.ToString();
    uColor = checked((uint)Convert.ToUInt32(strColor));
    strColor = String.Format("{0:x2}", uColor);
    strColor = "000000" + strColor;
    strColor = strColor.Substring((strColor.Length - 6), 6);

    uColor = 0;
    uColor = Convert.ToUInt32(strColor.Substring(4, 2), 16);
    nRed = (int)uColor;

    uColor = 0;
    uColor = Convert.ToUInt32(strColor.Substring(2, 2), 16);
    nGreen = (int)uColor;

    uColor = 0;
    uColor = Convert.ToUInt32(strColor.Substring(0, 2), 16);
    nBlue = (int)uColor;

    return System.Drawing.Color.FromArgb(nRed, nGreen, nBlue);
}

The format details also include conversion of Excel horizontal alignment to .NET horizontal alignment:

/// <span class="code-SummaryComment"><SUMMARY>
</span>
/// Converts Excel Horizontal Alignment to DotNet Horizontal Alignment
/// <span class="code-SummaryComment"></SUMMARY>
</span>
/// Excel Horizontal Alignment
/// <span class="code-SummaryComment"><RETURNS>HorizontalAlign</RETURNS>
</span>
private HorizontalAlign ExcelHAlign2DotNetHAlign(object objExcelAlign)
{
    switch (((Excel.Range)objExcelAlign).HorizontalAlignment.ToString())
    {
        case "-4131":
            return HorizontalAlign.Left;
        case "-4108":
            return HorizontalAlign.Center;
        case "-4152":
            return HorizontalAlign.Right;
        default:
            return HorizontalAlign.Left;
    }
}

Next is the conversion of Excel vertical alignment to .NET vertical alignment:

/// <span class="code-SummaryComment"><SUMMARY>
</span>
/// Converts Excel Vertical Alignment to DotNet Vertical Alignment
/// <span class="code-SummaryComment"></SUMMARY>
</span>
/// Excel Vertical Alignment
/// <span class="code-SummaryComment"><RETURNS>VerticalAlign</RETURNS>
</span>
private VerticalAlign ExcelVAlign2DotNetVAlign(object objExcelAlign)
{
    switch (((Excel.Range)objExcelAlign).VerticalAlignment.ToString())
    {
        case "-4160":
            return VerticalAlign.Top;
        case "-4108":
            return VerticalAlign.Middle;
        case "-4107":
            return VerticalAlign.Bottom;
        default:
            return VerticalAlign.Bottom;
    }

}

Chart View

Sample Image - ExcelShtAndChrt-In-aspx.jpg

The selection of sheet name will be displayed by "*" delimited. This is because "*" cannot be accepted in Worksheet names.

Problems faced in displaying a Worksheet

  1. Merging of rows is not included because it needs to find out the logic of combining rows (whereas columns merge is possible on insertion as a TableRow).
  2. The chart object is a GIF file, it is generated and put in the server and displayed in an ASPX page. (Here, there is no need to get the chart object inside the page). This is a preliminary trial to put a chart on an ASPX page.

Forthcoming Plans

To display all types of MS Office files in ASPX pages and to produce intelligence on data values etc.

Points to Consider

This meets the business requirements with data display alone and no activities processed. A template of Excel with cell references to other Excel files will give a real time stylesheet data report.

Summary

This page will be enhanced by including several functionalities of MS Excel.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Gnanandam Gopalan
Web Developer
India India
I am basically a C++ Programer done various project for Industrial Automation Activities.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionProblem occured !!!!!!!memberzimzamzim20-Sep-11 1:04 
AnswerRe: Problem occured !!!!!!!membermatrixology27-Nov-11 18:14 
GeneralNo display for imagememberMember 778553224-May-11 4:51 
GeneralOld format or invalid type library. (Exception from HRESULT: 0x80028018 (TYPE_E_INVDATAREAD))memberNuclearStorm16-Feb-11 4:26 
GeneralImage in excel is not Displayingmemberam7429-Mar-10 21:36 
GeneralProblem in Displaying ExcelmemberPallaviwakde5-Feb-10 0:06 
GeneralRe: Problem in Displaying Excelmembersnpcrud20-Dec-10 9:44 
GeneralRe: Problem in Displaying Excelmembersnpcrud20-Dec-10 10:11 
GeneralRe: Problem in Displaying Excelmembermatrixology27-Nov-11 18:25 
GeneralRe: Problem in Displaying Excelmembersnpcrud28-Nov-11 9:59 
Hi matrixology,
 
Gave up on Office automation tools, could not install MS Office COM components on the webserver. Just wanted to read an Excel file in the end and used EPPLus - more info here -> http://epplus.codeplex.com/documentation. Simple to pull data from an Excel file and manipulate.
 
Cheers
GeneralRe: Problem in Displaying Excelmembermatrixology28-Nov-11 17:04 
GeneralNeed same code for VB.NetmemberAnOnYmOuS_S24-Nov-09 2:18 
GeneralCool applicationmemberLulama8-Mar-09 21:55 
GeneralNice Applicationmemberatheequepasha12-Nov-08 18:14 
Generaltemp gif filememberMember 391781022-Sep-08 5:24 
GeneralLoading takes a long timememberAgnes Loyola16-Jul-08 3:29 
GeneralDisplay Excel inside the aspx pagememberAgnes Loyola11-Jul-08 20:56 
GeneralTo display excel sheetmemberAgnes Loyola11-Jul-08 1:24 
AnswerRe: To display excel sheetmemberGnanandam Gopalan11-Jul-08 2:46 
GeneralRe: To display excel sheetmemberAgnes Loyola11-Jul-08 3:06 
Questionhow to load the Excel sheet in the page loadmemberAgnes Loyola10-Jul-08 1:05 
AnswerRe: how to load the Excel sheet in the page loadmemberGnanandam Gopalan10-Jul-08 1:14 
GeneralThanks for nice Example, But I am getting one errors [modified]memberMember 204885626-Feb-08 20:50 
GeneralNicememberPooya Musavi19-Oct-07 8:00 
GeneralRe: NicememberGnanandam Gopalan21-Oct-07 23:11 
QuestionVB Versionmembersmcirish17-Oct-07 4:19 
GeneralProblem in Horizontal Alignment.memberAnees Mhd25-Sep-07 1:13 
GeneralRe: Problem in Horizontal Alignment.memberAnees Mhd25-Sep-07 17:48 
GeneralYour Application is greate but ...memberhishammm17-May-07 2:57 
GeneralRe: Your Application is greate but ...memberGnanandam Gopalan20-May-07 23:15 
GeneralRe: Your Application is greate but ...membershahzad_mca11-Oct-07 6:20 
QuestionExcel process not closedmembersandu200415-Nov-06 20:36 
AnswerRe: Excel process not closedmemberGnanandam Gopalan17-Nov-06 3:28 
GeneralRe: Excel process not closedmembersandu200417-Nov-06 5:00 
GeneralRe: Excel process not closedmemberGnanandam Gopalan19-Nov-06 20:04 
GeneralProblem open the Excel SheetmemberJ@vi Martinez9-Nov-06 5:32 
AnswerRe: Problem open the Excel SheetmemberGnanandam Gopalan9-Nov-06 18:21 
GeneralRe: Problem open the Excel SheetmemberJ@vi Martinez9-Nov-06 20:10 
GeneralRe: Problem open the Excel SheetmemberJ@vi Martinez14-Nov-06 0:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130619.1 | Last Updated 9 Nov 2006
Article Copyright 2006 by Gnanandam Gopalan
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid