News Ticker

Menu

Custom Pagination of jQuery DataTables in Asp.net

(Changing text on paging in DataTables) – Đối với các nút di chuyển trang mặc định trong jQuery DataTables đang để dạng Text, nếu như bạn muốn có thể thay đổi chúng bằng các ký hiệu hoặc Icon. Dưới đây là hướng đẫn để các bạn có thể dễ dàng thay đổi Pagination theo ý muốn.


Xem những Video hay dành cho thiếu nhi - Nghe trên Youtube



Code Example C#, Code Example VB.NET
Code Example C#, Code Example VB.NET
B1: Download CSDL Northwind tại đây và thực hiện công việc Restore Data.

B2: Tạo Project trong Microsoft Visual Studio 2010

Trong Visual Studio tạo 1 Class có tên: Utility và nhập đoạn Code phía dưới cho Class này.
C# Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;

namespace CustomPaginationofDataTables
{
    public class SqlDataProvider
    {
        #region "Membres Prives"

        private string _connectionString;

        #endregion

        #region "Constructeurs"

        public SqlDataProvider()
        {
            try
            {
                _connectionString = ConfigurationManager.ConnectionStrings["SiteSqlServer"].ConnectionString;
            }
            catch
            {
            }
        }

        #endregion

        #region "Proprietes"

        public string ConnectionString
        {
            get { return _connectionString; }
        }

        #endregion

        #region "Functions"

        public DataTable FillTable(string sql)
        {
            try
            {
                DataTable tb = new DataTable();
                SqlDataAdapter adap = new SqlDataAdapter(sql, _connectionString);
                adap.Fill(tb);
                return tb;
            }
            catch
            {
                return null;
            }
        }

        #endregion
    }
}
VB.NET Code
Imports System.Data.SqlClient
Imports System.Data

Namespace CustomPaginationofDataTables

    Public Class SqlDataProvider

#Region "Membres Prives"

        Shared _IsError As Boolean = False
        Private _connectionString As String

#End Region

#Region "Constructeurs"

        Public Sub New()
            Try
                _connectionString = ConfigurationManager.ConnectionStrings("SiteSqlServer").ConnectionString
                _IsError = False
            Catch ex As Exception
                _IsError = True
            End Try
        End Sub

#End Region

#Region "Proprietes"

        Public ReadOnly Property ConnectionString() As String
            Get
                Return _connectionString
            End Get
        End Property

#End Region

#Region "Functions"

        Public Function FillTable(ByVal sql As StringAs DataTable
            Try
                Dim tb As New DataTable
                Dim adap As New SqlDataAdapter(sql, _connectionString)
                adap.Fill(tb)
                Return tb
            Catch ex As Exception
                Return Nothing
            End Try
        End Function

#End Region

    End Class

End Namespace

B3: Mở file Site.Master dạng HTML và bổ xung đoạn mã phía dưới trong thẻ Head
<head id="Head1" runat="server">
<title>Page Size and Scroller of DataTables in Asp.net</title>
<link href="Styles/Site.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.9/css/dataTables.bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/1.0.7/css/responsive.bootstrap.min.css" />
<script type="text/javascript" language="javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.10.9/js/dataTables.bootstrap.min.js"></script>
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/responsive/1.0.7/js/dataTables.responsive.min.js"></script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>

B4: Mở file Default.aspx dưới dạng HTML và  nhập mã HTML
<%@ Page Title="Custom Pagination of jQuery DataTables in Asp.net" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CustomPaginationofDataTables._Default" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div class="panel panel-default">
        <div class="panel-heading">
            <h3>Custom Pagination of jQuery DataTables in Asp.net</h3>
        </div>
        <div class="panel-body">
            <asp:Repeater ID="dlObject" runat="server">
                <HeaderTemplate>
                    <table id="tblData" class="table table-striped table-bordered" cellpadding="0" cellspacing="0" width="100%">
                        <thead>
                            <tr>
                                <th align="center">ProductName</th>
                                <th align="center">QuantityPerUnit</th>
                                <th align="center">UnitPrice</th>
                                <th align="center">UnitsInStock</th>
                                <th align="center">UnitsOnOrder</th>                             
                            </tr>
                        </thead>
                        <tbody>
                    </HeaderTemplate>
                    <ItemTemplate>
                        <tr>
                            <td align="left"><%# Eval("ProductName") %></td>
                            <td align="left"><%# Eval("QuantityPerUnit") %></td>
                            <td align="right"><%# Eval("UnitPrice") %></td>
                            <td align="right"><%# Eval("UnitsInStock") %></td>
                            <td align="right"><%# Eval("UnitsOnOrder") %></td>       
                        </tr>
                    </ItemTemplate>
                    <FooterTemplate>
                    </tbody>
                    </table>
                </FooterTemplate>
            </asp:Repeater>
        </div>
    </div>
    <script type="text/javascript">
        function pageLoad() {
            $('#tblData').dataTable({
                "sPaginationType": "full_numbers",
                "oLanguage": {
                    "sInfo": "Showing _START_ to _END_/_TOTAL_",
                    "oPaginate": {
                        "sFirst": "<<", // This is the link to the first page
                        "sPrevious": "<", // This is the link to the previous page
                        "sNext": ">", // This is the link to the next page
                        "sLast": ">>" // This is the link to the last page
                    }
                }
            });
        };
    </script>
</asp:Content>

Hoặc bạn có thể sử dụng ảnh để làm các nút di chuyển trang.

Và thay đổi đoạn mã Javasript phía dưới
<script type="text/javascript">
      function pageLoad() {
            $('#tblData').dataTable({
                "sPaginationType""full_numbers",
                "oLanguage": {
                    "sInfo""Showing _START_ to _END_/_TOTAL_",
                    "oPaginate": {
                        "sFirst"'<img src="Images/First.gif" width="18" height="18" />'// This is the link to the first page
                        "sPrevious"'<img src="Images/Prev.gif" width="18" height="18" />'// This is the link to the previous page
                        "sNext"'<img src="Images/Next.gif" width="18" height="18" />'// This is the link to the next page
                        "sLast"'<img src="Images/Last.gif" width="18" height="18" />' // This is the link to the last page
                       
                    }
                }
            });
       };
</script>

B5: Viết Code cho file Default.aspx
C# Code
//Visit http://www.laptrinhdotnet.com for more ASP.NET Tutorials
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Web.UI;
using System.Web.Caching;

namespace CustomPaginationofDataTables
{
    public partial class _Default : System.Web.UI.Page
    {

        #region "Bind Data"

        private void BindData()
        {
            DataTable objBind = new DataTable();
            objBind = GetData();
            dlObject.DataSource = objBind;
            dlObject.DataBind();
        }

        private DataTable GetData()
        {
            SqlDataProvider objSQL = new SqlDataProvider();
            DataTable objBind = null;
            //Caching
            if (Cache["Cache_Products"] == null)
            {
                objBind = objSQL.FillTable("SELECT Products.ProductID, Products.ProductName, Products.SupplierID,Products.QuantityPerUnit, Products.UnitPrice, Products.UnitsInStock, Products.UnitsOnOrder, Products.ReorderLevel,Products.Discontinued From Products");
                Cache["Cache_Products"] = objBind;
            }
            else
            {
                objBind = (DataTable)Cache["Cache_Products"];
            }
            return objBind;
        }

        #endregion

        #region "Event Handles"

        protected void Page_Load(object sender, System.EventArgs e)
        {
            try
            {
                if (!IsPostBack)
                {
                    BindData();
                }
            }
            catch
            {
            }
        }

        #endregion
    }
}
VB.NET Code
'Visit http://www.laptrinhdotnet.com for more ASP.NET Tutorials

Namespace CustomPaginationofDataTables

    Public Class _Default
        Inherits System.Web.UI.Page

#Region "Bind Data"

        Private Sub BindData()
            Dim objBind As New DataTable
            objBind = GetData()
            dlObject.DataSource = objBind
            dlObject.DataBind()
        End Sub

        Private Function GetData() As DataTable
            Dim objSQL As New SqlDataProvider
            Dim objBind As DataTable
            'Caching
            If Cache("Cache_Products") Is Nothing Then
                objBind = objSQL.FillTable("SELECT Products.ProductID, Products.ProductName, Products.SupplierID,Products.QuantityPerUnit, Products.UnitPrice, " & _
                                           "Products.UnitsInStock, Products.UnitsOnOrder, Products.ReorderLevel,Products.Discontinued From Products")
                Cache("Cache_Products") = objBind
            Else
                objBind = CType(Cache("Cache_Products"), DataTable)
            End If
            Return objBind
        End Function

#End Region

#Region "Event Handles"

        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Try
                If Page.IsPostBack = False Then
                    BindData()
                End If
            Catch ex As Exception

            End Try
        End Sub

#End Region

    End Class

End Namespace

Code Example C#, Code Example VB.NET
Code Example C#, Code Example VB.NET



Chúc các bạn thành công!

Quang Bình

Share This:

Mỗi bài viết đều là công sức và thời gian của tác giả ví vậy tác giả chỉ có một mong muốn duy nhất nếu ai đó có Copy thì xin hãy ghi rõ nguồn và thông tin tác giả ở cuối mỗi bài viết.
Xin cảm ơn!

No Comment to " Custom Pagination of jQuery DataTables in Asp.net "

  • To add an Emoticons Show Icons
  • To add code Use [pre]code here[/pre]
  • To add an Image Use [img]IMAGE-URL-HERE[/img]
  • To add Youtube video just paste a video link like http://www.youtube.com/watch?v=0x_gnfpL3RM