Implementation Code for converting an Excel file into an XML file in Asp.net

Source: Internet
Author: User

CopyCode The Code is as follows: if (this. fileupload1.postedfile! = NULL)
{
String filename = This. fileupload1.filename. tostring ();
String Path = @ server. mappath ("../file/") + filename;
This. fileupload1.postedfile. saveas (PATH );
// Read the excle File Uploaded by the user
String conn = "provider = Microsoft. Jet. oledb.4.0; Data Source = '" + path + "'; extended properties = Excel 8.0 ";
Oledbconnection olecon = new oledbconnection (conn );
Olecon. open ();
// Note the table name. After the Excel file is opened, the excle name on the lowest page is displayed,
// The default value is $ sheet1, $ sheet2, $ sheet3
String SQL = "select * from [$ sheet1]";
Oledbdataadapter oleda = new oledbdataadapter (SQL, Conn );
Oleda. Fill (DS );
Olecon. Close ();

This. gridview1.datasource = Ds;
This. gridview1.databind ();

String file_name = "20091126002.xml ";
String xml_path = @ server. mappath ("../reports/XML/") + file_name;

DS. writexml (xml_path );
DS. Dispose ();
}

Related Article

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.