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 > ASP.NET > ASP.NET Excel (EPPlus) , VB.Net,C# > ASP.Net Excel & EPPlus Convert Excel DataTable



Clound SSD Virtual Server

ASP.Net Excel & EPPlus Convert Excel DataTable

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 (VB.Net)

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        Dim excel As New FileInfo(Server.MapPath("Xls/myData.xlsx"))
        Using package = New ExcelPackage(excel)
            Dim workbook = package.Workbook

            '*** Sheet 1
            Dim worksheet = workbook.Worksheets.First()

            '*** DataTable & DataSource
            Dim dt As DataTable = ConvertToDataTable(worksheet)

            Me.myGridView.DataSource = dt
            Me.myGridView.DataBind()
        End Using

    End Sub

    Private Function ConvertToDataTable(oSheet As ExcelWorksheet) As DataTable
        Dim totalRows As Integer = oSheet.Dimension.[End].Row
        Dim totalCols As Integer = oSheet.Dimension.[End].Column
        Dim dt As New DataTable(oSheet.Name)
        Dim dr As DataRow = Nothing
        For i As Integer = 1 To totalRows
            If i > 1 Then
                dr = dt.Rows.Add()
            End If
            For j As Integer = 1 To totalCols
                If i = 1 Then
                    dt.Columns.Add(oSheet.Cells(i, j).Value.ToString())
                Else
                    dr(j - 1) = oSheet.Cells(i, j).Value.ToString()
                End If
            Next
        Next
        Return dt
    End Function


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

 
ASP.Net Excel & EPPlus Generate Excel file
Rating :

 
ASP.Net Excel & EPPlus Cell Ranges/Border
Rating :

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

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

 
ASP.Net Excel & EPPlus Read Excel/Cell file
Rating :

 
ASP.Net Excel & EPPlus Import Excel To Database
Rating :

 
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 01
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 อัตราราคา คลิกที่นี่