HighTechTalks DotNet Forums  

Datagrid to emulate Excel Spreadsheet

ASP.net Data Grid Control microsoft.public.dotnet.framework.aspnet.datagridcontrol


Discuss Datagrid to emulate Excel Spreadsheet in the ASP.net Data Grid Control forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
julian.tklim@gmail.com
 
Posts: n/a

Default Datagrid to emulate Excel Spreadsheet - 02-17-2007 , 02:38 AM






Hi,

I am totally new to .NET datagrid. Just want to explore the possbility
of datagrid.

I am currently using Microsoft OWC to launch Excel over the Web. As
OWC is going to be discontinue by Microsoft. Therefore, I would like
to use .NET datagrid to emulate Excel SpreadSheet over the Web (eg:
Webgrid).

What I need to do is to store all the datagrid's cells in SQL Database
and also to be able to reference the cells in the datagrid to perform
different kinds of formula.

Eg: Cell A3 = Cell A1 x Cell A2.

Preferably, the cell's formula can be easily compose by user via front
end or setup pages. Is there any datagrid automation tools out there
which I can do this easily?

Any reply will be appreciated. Thanks.

Julian


Reply With Quote
  #2  
Old   
Alvin Bruney [MVP]
 
Posts: n/a

Default Re: Datagrid to emulate Excel Spreadsheet - 02-18-2007 , 08:46 PM






You may be aware that a single spreadsheet supports thousands of rows by
hundreds of columns. Multiply that by a few spreadsheets over a moderate
user base and it's easy to see why that design would fall apart under even
moderate load. Add to the fact that the bare bones functionality of a
spreadsheet will take several thousand lines of code to get a datagrid to
behave in a similar fashion.

You need a better plan to handle your situation. It sounds like you may need
to look at Excel Services based on your situation. A datagrid simply cannot
handle the volume of data that a spreadsheet can handle. It wasn't meant for
that.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley


<julian.tklim (AT) gmail (DOT) com> wrote

Quote:
Hi,

I am totally new to .NET datagrid. Just want to explore the possbility
of datagrid.

I am currently using Microsoft OWC to launch Excel over the Web. As
OWC is going to be discontinue by Microsoft. Therefore, I would like
to use .NET datagrid to emulate Excel SpreadSheet over the Web (eg:
Webgrid).

What I need to do is to store all the datagrid's cells in SQL Database
and also to be able to reference the cells in the datagrid to perform
different kinds of formula.

Eg: Cell A3 = Cell A1 x Cell A2.

Preferably, the cell's formula can be easily compose by user via front
end or setup pages. Is there any datagrid automation tools out there
which I can do this easily?

Any reply will be appreciated. Thanks.

Julian




Reply With Quote
  #3  
Old   
julian.tklim@gmail.com
 
Posts: n/a

Default Re: Datagrid to emulate Excel Spreadsheet - 02-19-2007 , 08:28 AM



On Feb 18, 5:46 pm, "Alvin Bruney [MVP]" <some guy without an email
address> wrote:
Quote:
You may be aware that a single spreadsheet supports thousands of rows by
hundreds of columns. Multiply that by a few spreadsheets over a moderate
user base and it's easy to see why that design would fall apart under even
moderate load. Add to the fact that the bare bones functionality of a
spreadsheet will take several thousand lines of code to get a datagrid to
behave in a similar fashion.

You need a better plan to handle your situation. It sounds like you may need
to look at Excel Services based on your situation. A datagrid simply cannot
handle the volume of data that a spreadsheet can handle. It wasn't meant for
that.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon andwww.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley

julian.tk... (AT) gmail (DOT) com> wrote in message

news:1171697887.340257.319710 (AT) a75g2000cwd (DOT) googlegroups.com...



Hi,

I am totally new to .NET datagrid. Just want to explore the possbility
of datagrid.

I am currently using Microsoft OWC to launch Excel over the Web. As
OWC is going to be discontinue by Microsoft. Therefore, I would like
to use .NET datagrid to emulate Excel SpreadSheet over the Web (eg:
Webgrid).

What I need to do is to store all the datagrid's cells in SQL Database
and also to be able to reference the cells in the datagrid to perform
different kinds of formula.

Eg: Cell A3 = Cell A1 x Cell A2.

Preferably, the cell's formula can be easily compose by user via front
end or setup pages. Is there any datagrid automation tools out there
which I can do this easily?

Any reply will be appreciated. Thanks.

Julian- Hide quoted text -

- Show quoted text -
Hi Alvin,

Thanks for the reply. I know the limitation of Excel Eg: 65535 rows.
Actually, I forgot to mention one point. I am just dealing with one
worksheet. Probably having 200 columns by 200 rows.

I have tried evaluating Excel Service. I think it needs Microsoft
Sharepoint Server Enterprise edition in order to support Excel
Service. It seems to be "overkill" (in terms of cost) by having an
enterprise version just to implement a simple webgrid application.

Regards,
Julian







Reply With Quote
  #4  
Old   
Alvin Bruney [MVP]
 
Posts: n/a

Default Re: Datagrid to emulate Excel Spreadsheet - 02-26-2007 , 07:31 PM



Yup, well as you say, build your own or keep what you have.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley


<julian.tklim (AT) gmail (DOT) com> wrote

Quote:
On Feb 18, 5:46 pm, "Alvin Bruney [MVP]" <some guy without an email
address> wrote:
You may be aware that a single spreadsheet supports thousands of rows by
hundreds of columns. Multiply that by a few spreadsheets over a moderate
user base and it's easy to see why that design would fall apart under
even
moderate load. Add to the fact that the bare bones functionality of a
spreadsheet will take several thousand lines of code to get a datagrid to
behave in a similar fashion.

You need a better plan to handle your situation. It sounds like you may
need
to look at Excel Services based on your situation. A datagrid simply
cannot
handle the volume of data that a spreadsheet can handle. It wasn't meant
for
that.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon andwww.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley

julian.tk... (AT) gmail (DOT) com> wrote in message

news:1171697887.340257.319710 (AT) a75g2000cwd (DOT) googlegroups.com...



Hi,

I am totally new to .NET datagrid. Just want to explore the possbility
of datagrid.

I am currently using Microsoft OWC to launch Excel over the Web. As
OWC is going to be discontinue by Microsoft. Therefore, I would like
to use .NET datagrid to emulate Excel SpreadSheet over the Web (eg:
Webgrid).

What I need to do is to store all the datagrid's cells in SQL Database
and also to be able to reference the cells in the datagrid to perform
different kinds of formula.

Eg: Cell A3 = Cell A1 x Cell A2.

Preferably, the cell's formula can be easily compose by user via front
end or setup pages. Is there any datagrid automation tools out there
which I can do this easily?

Any reply will be appreciated. Thanks.

Julian- Hide quoted text -

- Show quoted text -

Hi Alvin,

Thanks for the reply. I know the limitation of Excel Eg: 65535 rows.
Actually, I forgot to mention one point. I am just dealing with one
worksheet. Probably having 200 columns by 200 rows.

I have tried evaluating Excel Service. I think it needs Microsoft
Sharepoint Server Enterprise edition in order to support Excel
Service. It seems to be "overkill" (in terms of cost) by having an
enterprise version just to implement a simple webgrid application.

Regards,
Julian








Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.