The problem is solved and the improved code is posted first. (Implement to pour the data in the DataGrid out of the Excel file and download it)

Source: Internet
Author: User
Imports System
Imports System.Text
Namespace Toexcel
' Function: The datagrid in the ASP.net to generate Excel file downloads.
' Mountains improvement: 1, Support Chinese 2, hidden column does not show
' Date: 2002.10.30
Public Class Datagridtocsv
Public Function Generatefile (ByRef Page as System.Web.UI.Page, ByVal Mydatagrid as System.Web.UI.WebControls.DataGrid, ByVal FileName As String) as String
Dim resp as HttpResponse
Dim ColCount as Integer = mydatagrid.columns.count-1
RESP = Page.Response
Resp. ContentEncoding = System.Text.Encoding.GetEncoding ("GB2312") ' The key to solve Chinese garbled characters
' Resp. Charset = "Utf-8"
' Resp. AddFileDependency (FileName)
' Resp. ContentType = "Text/html"
"Resp." Appendheader ("Content-type", "text/html; charset=gb2312 ")
Resp. Appendheader ("Content-disposition", "attachment;filename=" + filename) ' necessary, made download file

Dim colheaders as String = ""

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.