Modifying Excel spreadsheet with .NET

前端 未结 8 957
刺人心
刺人心 2021-01-07 02:38

Here\'s the problem:

I have to modify an existing Excel spreadsheet using .NET. The spreadsheet is hugely complex, and I just have to add data in some predefined ar

8条回答
  •  难免孤独
    2021-01-07 03:38

    You have still few solutions. 1) Third party component for excel files. ( i think this is most pain-les & reliable solution ) 2) Using html-table.


    1) Simply look at internet :) 2) The excel works pretty fine with html-tables. If you generate this html:

    
    
    Column AColumn B
    -154hello world

    the excel will show it as worksheet as you formated it. I think, this is most universal way, how to create "rich" excel worksheet in internet enviroment without having excel instaled on server.

提交回复
热议问题