Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 23rd, 2003, 12:21 PM
Authorized User
 
Join Date: Dec 2003
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Default Exporting DataGrid To Excel

I am trying to export a datagrid to Excel using ASP.NET & C#. I found sample code that shows how to do it, but if the datagrid contains a large amount of data, the app times out right in the middle of the export. Can someone provide suggestions on the best method for doing exports to Excel.

 
Old December 23rd, 2003, 07:19 PM
Authorized User
 
Join Date: Aug 2003
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default

If the app is timing out, there are a couple of things you could try. You could try setting the script timeout to a higher value (in seconds), for example

Server.ScriptTimeout = 500

for up to 10 minutes. You can also do this in the web.config:

<configuration>
   <system.web>
      <httpRuntime maxRequestLength="8096" executionTimeout="500"/>
    </system.web>
</configuration>

 
Old December 31st, 2003, 12:23 PM
Registered User
 
Join Date: Oct 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
quote:Originally posted by chiefg
 I am trying to export a datagrid to Excel using ASP.NET & C#. I found sample code that shows how to do it, but if the datagrid contains a large amount of data, the app times out right in the middle of the export. Can someone provide suggestions on the best method for doing exports to Excel.

Hi,
i am trying to do the same unsucessfuly, could u post the code that u have working.
many thanks
ben






Similar Threads
Thread Thread Starter Forum Replies Last Post
Exporting data from datagrid to excel??? twyce C# 3 March 4th, 2010 04:51 AM
Problem in exporting data from datagrid to Excel deb_kareng ASP.NET 2.0 Professional 4 August 4th, 2007 09:21 AM
exporting to excel from datagrid hotshot_21 ASP.NET 1.0 and 1.1 Basics 2 June 9th, 2006 08:53 AM
problem in exporting datagrid to excel swati_joshi ASP.NET 1.0 and 1.1 Professional 3 June 4th, 2006 11:26 PM
problem exporting datagrid to excel kscdave Classic ASP Professional 0 March 29th, 2005 11:57 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.