Using Excel API in .NET

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Using Excel API in .NET

    > I have an ASP.NET app that does some calculations.
    > I want to use the built in functions i n Excel e.g Price
    > etc and other various financial functions rather than
    > write them.
    > So all I want to do is use teh Excel API / Object Library
    > in .NET.
    >
    > Do I need Excel installed on my web server to do this, as
    > I won't be using the Excel Application. I just want to
    > use the API?
    Yes. The API is merely the entry way into the application.
    > In terms of performance, would this pose an issue with
    > loads of users accessing my site?
    Yes. Depending on what you are doing, you could very well end up launching
    excel.exe with every web request. This uses a lot of system resources.

    Also keep security in mind - your web server will now have all of the
    vulnerabilities of ASP.NET, IIS, AND Excel. You get more attack surface when
    you install more software.

    If you know the formula that you want to use, and it's a small number, you
    may just want to code it yourself. You may also want to investigate the
    Office web controls.

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows XP
    Windows XP Associate Expert
    --


    Chris Jackson Guest

  2. Similar Questions and Discussions

    1. PDF to Excel
      I have a financial report in PDF format that has many lists in columns with text and figures. I would like to export this to Excel or another...
    2. Place Excel into table with ability to link when native Excel file is updated.
      Is it possible to place an Excel file into InDesign and create a link so that any changes made later to the Excel file can be updated in InDesign? ...
    3. excel to csv
      hi all anybody knows a script to save an excel in csv? i need it for a php script tnx
    4. [PHP] PHP, Excel, jpgraph - can the graph be included in the Excel output?
      You need a class that can create xls files with images. Or you can create a Web Archive: http://officeupdate.microsoft.com/office/webarchive.htm ...
    5. PHP, Excel, jpgraph - can the graph be included in the Excel output?
      Good morning! I have several reports that are generated using PHP & MySQL for which I would like to include a graph using the excellent jpgraph...
  3. #2

    Default Re: Using Excel API in .NET

    Hi,

    In addition to Kens answer try to check if math.net (.net library) got
    the calculation your looking for :
    [url]http://sourceforge.net/projects/nmath[/url]

    Natty Gur, CTO
    Dao2Com Ltd.
    34th Elkalay st. Raanana
    Israel , 43000
    Phone Numbers:
    Office: +972-(0)9-7740261
    Fax: +972-(0)9-7740261
    Mobile: +972-(0)58-888377


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139