Use this step-by-step guide to populate a DataGrid Web server control on an ASP.NET WebForm and then export the
contents of the DataGrid to Microsoft Excel.
This article describes two techniques for exporting the data in
the DataGrid:
Using the Excel MIME Type (or Content Type)
With server-side code, you can bind the DataGrid to your data and have the data open in Excel on a client
computer. To do this, set the ContentType to application/vnd.ms-excel. After the client receives the new stream, the data appears in
Excel as if the content was opened as a new page in the Web browser.
Using Excel Automation
With client-side code, you can extract the HTML from
the DataGrid and then Automate Excel to display the HTML in a new workbook.
With Excel Automation, the data always appears outside the browser in an Excel
application window. One advantage to Automation is that you can
programmatically control Excel if you want to modify the workbook after the
data is exported. However, because Excel is not marked as safe for scripting,
your clients must apply security settings in the Web browser that allow
Automation.
Start Visual Studio .NET. On the File menu, point to New, and then click Project.
In the Project Types pane, click Visual Basic Projects. Under Templates, click ASP.NET Web Application. Name the application ExcelExport and then click OK.
WebForm1 appears in Design view for you.
In Solution Explorer, right-click WebForm1.aspx and then click Rename. Change the name of the file to Bottom.aspx.
On the View menu, click HTML Source to add the following DataGrid between the <form> and </form> tags:
On the View menu, click Design to return to design view.
The DataGrid appears on the WebForm.
On the View menu, click Code to display the code behind the Web Form. Add the following code
to the Page_Load event handler:
Note You must change User ID <username>
and password=<strong password> to the correct values before you run this
code. Make sure that the user account has the correct permissions to perform this
operation on the database.
' Create a connection and open it.
Dim objConn As New System.Data.SqlClient.SqlConnection("User ID=<username>;Password=<strong password>;Initial Catalog=Northwind;Data Source=SQLServer;")
objConn.Open()
Dim strSQL As String
Dim objDataset As New DataSet()
Dim objAdapter As New System.Data.SqlClient.SqlDataAdapter()
' Get all the customers from the USA.
strSQL = "Select * from customers where country='USA'"
objAdapter.SelectCommand = New System.Data.SqlClient.SqlCommand(strSQL, objConn)
' Fill the dataset.
objAdapter.Fill(objDataset)
' Create a new view.
Dim oView As New DataView(objDataset.Tables(0))
' Set up the data grid and bind the data.
DataGrid1.DataSource = oView
DataGrid1.DataBind()
' Verify if the page is to be displayed in Excel.
If Request.QueryString("bExcel") = "1" Then
' Set the content type to Excel.
Response.ContentType = "application/vnd.ms-excel"
' Remove the charset from the Content-Type header.
Response.Charset = ""
' Turn off the view state.
Me.EnableViewState = False
Dim tw As New System.IO.StringWriter()
Dim hw As New System.Web.UI.HtmlTextWriter(tw)
' Get the HTML for the control.
DataGrid1.RenderControl(hw)
' Write the HTML back to the browser.
Response.Write(tw.ToString())
' End the response.
Response.End()
End If
NOTE: Replace SQLServer in the code with the name of your SQL Server.
If you do not have access to a SQL Server that contains the Northwind sample
database, modify the connection string to use the Microsoft Access 2002 sample
Northwind database:
provider=microsoft.jet.oledb.4.0; data source=C:\Program Files\Microsoft Office\Office10\Samples\Northwind.mdb
If you select this method, modify the aforementioned code to use
the OleDbClient namespace rather than the SqlClient namespace.
On the Project menu, click Add HTML Page. Name the page Top.htm and then click Open.
Top.htm appears in Design view.
On the View menu, click HTML Source. Replace the contents of the HTML source window with the
following code:
<html>
<script language="vbscript">
Sub Button1_onclick
Select Case Select1.selectedIndex
Case 0 ' Use Automation.
Dim sHTML
sHTML = window.parent.frames("bottom").document.forms(0).children("DataGrid1").outerhtml
Dim oXL, oBook
Set oXL = CreateObject("Excel.Application")
Set oBook = oXL.Workbooks.Add
oBook.HTMLProject.HTMLProjectItems("Sheet1").Text = sHTML
oBook.HTMLProject.RefreshDocument
oXL.Visible = true
oXL.UserControl = true
Case 1 ' Use MIME Type (In a New Window).
window.open("bottom.aspx?bExcel=1")
Case 2 ' Use MIME Type (In the Frame).
window.parent.frames("bottom").navigate "bottom.aspx?bExcel=1"
End Select
End Sub
</script>
<body>
Export to Excel Using:
<SELECT id="Select1" size="1" name="Select1">
<OPTION value="0" selected>Automation</OPTION>
<OPTION value="1">MIME Type (In a New Window)</OPTION>
<OPTION value="2">MIME Type (In the Frame)</OPTION>
</SELECT>
<INPUT id="Button1" type="button" value="Go!" name="Button1">
</body>
</html>
On the Project menu, click Add HTML Page. Name the page Frameset.htm and then click Open.
Frameset.htm opens in Design view.
On the View menu, click HTML Source. Replace the contents of the HTML source window with the
following code:
For additional information, click the
article numbers below to view the articles in the Microsoft Knowledge Base:
199841
(http://support.microsoft.com/kb/199841/EN-US/
)
How To Display ASP Results Using Excel in IE with MIME Types
271572
(http://support.microsoft.com/kb/271572/EN-US/
)
How To Format an Excel Workbook While Streaming MIME Content
296717
(http://support.microsoft.com/kb/296717/EN-US/
)
PRB: Internet Explorer Prompts User to Open/Save Office File Streamed from ASP
264143
(http://support.microsoft.com/kb/264143/EN-US/
)
FIX: ASP Session Variables Empty When Office 2000 MIME Types Are Streamed with Internet Explorer
266263
(http://support.microsoft.com/kb/266263/EN-US/
)
BUG: Word 2000 and Excel 2000 Display ASP Source When Using MIME Type to Stream Data