Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > C# (.NET) > ASP.NET Excel (EPPlus) , VB.Net,C# > (C#) ASP.Net Excel & EPPlus Convert Excel DataTable



Clound SSD Virtual Server

(C#) ASP.Net Excel & EPPlus Convert Excel DataTable

(C#) ASP.Net Excel & EPPlus Convert Excel DataTable ในการแปลงข้อมูลจาก Excel เป็น DataTable ด้วย EPPlus นั้นจะต้องใช้การ Loop ข้อมูลจาก Excel ทีล่ะ Column , Cell โดยใน Rows แรกจะถูกมองว่าเป็น Column ส่วน Rows อื่นๆ ก็จะถูกมองว่าเป็น Rows ของข้อมูล

Language Code : VB.NET || C#

Framework : 1,2,3,4

ตัวอย่างการอ่านข้อมูลจาก Excel ให้อยู่ในรูปแบบของ DataTable

ASP.NET Excel EPPlus

ข้อมูลที่อยู่ใน Excel ไฟล์

Code (C#)

       protected void Page_Load(object sender, EventArgs e)
        {

            FileInfo excel = new FileInfo(Server.MapPath(@"Xls/myData.xlsx"));
            using (var package = new ExcelPackage(excel))
            {
                var workbook = package.Workbook;

                //*** Sheet 1
                var worksheet = workbook.Worksheets.First();

                //*** DataTable & DataSource
                DataTable dt = ConvertToDataTable(worksheet);

                this.myGridView.DataSource = dt;
                this.myGridView.DataBind();
            }

        }

        private DataTable ConvertToDataTable(ExcelWorksheet oSheet)
        {
            int totalRows = oSheet.Dimension.End.Row;
            int totalCols = oSheet.Dimension.End.Column;
            DataTable dt = new DataTable(oSheet.Name);
            DataRow dr = null;
            for (int i = 1; i <= totalRows; i++)
            {
                if (i > 1) dr = dt.Rows.Add();
                for (int j = 1; j <= totalCols; j++)
                {
                    if (i == 1)
                        dt.Columns.Add(oSheet.Cells[i, j].Value.ToString());
                    else
                        dr[j - 1] = oSheet.Cells[i, j].Value.ToString();
                }
            }
            return dt;
        }


Screenshot

ASP.NET Excel EPPlus

สามารถใช้ GridView เพื่อแสดงค่าจาก DataTable ได้เลย






   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2017-03-20 22:08:59 / 2017-03-20 22:51:05
  Download : No files
 Sponsored Links / Related

 
(C#) ASP.Net Excel & EPPlus Generate Excel file
Rating :

 
(C#) ASP.Net Excel & EPPlus Cell Ranges/Border
Rating :

 
(C#) ASP.Net Excel & EPPlus Cell styling (Color, Font, Alignments)
Rating :

 
(C#) ASP.Net Excel & EPPlus Open Excel and Write Excel (Template)
Rating :

 
(C#) ASP.Net Excel & EPPlus Read Excel/Cell file
Rating :

 
(C#) ASP.Net Excel & EPPlus Convert Excel DataTable
Rating :

 
(C#) ASP.Net Excel & EPPlus Import Excel To Database
Rating :

 
(C#) ASP.Net Excel & EPPlus Generate Excel Report from Database
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่