25/05/2018, 07:38

Điều khiển làm việc với CSDL (Data Control)

Hiển thị dữ liệu với DetailView DetailView được đưa ra hiển thị như một bảng(<Table>) trong HTML để hiển thị dữ liệu một bản ghi. Ví dụ: Trang DetailView.aspx <%@ Page ...

Hiển thị dữ liệu với DetailView

DetailView được đưa ra hiển thị như một bảng(<Table>) trong HTML để hiển thị dữ liệu một bản ghi.

Ví dụ: Trang DetailView.aspx

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="DetailView.aspx.cs" Inherits="_DetailView" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Detail View</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:DetailsView ID="DetailsView1"

         DataSourceID="SqlDataSource1" runat="server" Height="50px" Width="125px">

        </asp:DetailsView>

        <asp:SqlDataSource ID="SqlDataSource1"

         ConnectionString="<%$ConnectionStrings:hcubiuData %>"

         SelectCommand="select * from tblIntrodure" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

Vẫn với cơ sở dữ liệu từ chương trước bạn đưa dữ liệu của bảng tblIntrodure vào SqlDataSource và điền nó vào DetailView1 với thuộc tính DataSourceID của nó

Bạn cũng có thể đưa dữ liệu vào DetailView từ một mảng hay danh sách dữ liệu

Bạn tạo một lớp Employee.cs

using System;

 

public class Employee

{

    private int _PersonID;

    public int PersonID

    {

        get { return _PersonID; }

        set { _PersonID = value; }

    }

 

    private string _Hoten;

    public string Hoten

    {

        get { return _Hoten; }

        set { _Hoten = value; }

    }

 

    private int _Tuoi;

    public int Tuoi

    {

        get { return _Tuoi; }

        set { _Tuoi = value; }

    }

      public Employee()

      {

      }

 

    public Employee(int _PersonID, string _Hoten, int _Tuoi)

    {

        this._PersonID = _PersonID;

        this._Hoten = _Hoten;

        this._Tuoi = _Tuoi;

    }

}

DetailViewPerson.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DetailViewPerson.aspx.cs" Inherits="DetailViewPerson" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Detail View</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:DetailsView ID="DetailsView1" runat="server" Height="50px" Width="125px">

        </asp:DetailsView>

    </div>

    </form>

</body>

</html>

 DetailViewPerson.aspx.cs

 using System;

using System.Collections;

using System.Collections.Generic;

using System.Data;

 

public partial class DetailViewPerson : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        if (!IsPostBack)

        {

            Employee newEmploy=new Employee(1,"HCUBIU",25);

            List<Employee> listEmploy=new List<Employee>();

            listEmploy.Add(newEmploy);

            DetailsView1.DataSource = listEmploy;

            DetailsView1.DataBind();

        }

    }

}

Trong ví dụ này chúng ta tạo ra một lớp Employee và chúng ta đưa dữ liệu vào DetailView1 với thuộc tính DataSource và phương thức DataBind điền dữ liệu vào.

 Sử dụng  Fields với điều khiển DetailView

DetailView hỗ trợ tất cả các Field như GridView

BoundField: cho phép bạn hiển thị giá trị của dữ liệu như Text

CheckBoxField: hiển thị dữ liệu dưới dạng một CheckBox

CommandField: hiển thị liên kết cho phép chỉnh sửa, thêm mới, xoá dữ liệu của dòng.

ButtonField: hiển thị dữ liệu như một button(ImageButton, )

HyperLinkField: hiển thị môt liên kết

ImageField: hiển thị ảnh

TemplateFile: cho phép hiển thị các đìều khiển tuỳ biến.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DetailViewfield.aspx.cs" Inherits="DetailViewfield" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Fields</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:DetailsView ID="DetailsView1" AutoGenerateRows="false"

        DataSourceID="SqlDataSource1" runat="server" Height="50px" Width="125px">

         <Fields>

            <asp:BoundField DataField="pkIntrodureID" HeaderText="ID" />

            <asp:BoundField DataField="sTitle" HeaderText="Tiêu đề" />

            <asp:BoundField DataField="iPosition" HeaderText="Vị trí" />

         </Fields>

        </asp:DetailsView>

        <asp:SqlDataSource ID="SqlDataSource1"

         ConnectionString="<%$ConnectionStrings:hcubiuData %>"

         SelectCommand="select * from tblIntrodure" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

 Trong ví dụ trên bạn đưa vào 3 BoundField và điền vào dữ liệu với thuộc tính DataField và thiết đặt cho nó tiêu dề với HeaderText, để đưa ra dữ liệu như thế này bạn cần thiết lập thuộc tính AutoGenerateRows=”false”.

Hiển thị DetailView với dữ liệu rỗng

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DetailViewDatanull.aspx.cs" Inherits="DetailViewDatanull" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Null Data</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:DetailsView ID="DetailsView1"

         DataSourceID="SqlDataSource1" EmptyDataText="Dữ liệu không có" runat="server" Height="50px" Width="125px">

        </asp:DetailsView>

        <asp:SqlDataSource ID="SqlDataSource1"

         ConnectionString="<%$ConnectionStrings:hcubiuData %>"

         SelectCommand="select * from tblProduct" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

Kết xuất của chương trình

Trong ví dụ trên ta đưa dữ liệu vào DetailView1 với dữ liệu từ bảng tblProduct(chưa được nạp dữ liệu), trong DetailView1 ta thêm vào thuộc tính EmptyDataText="Dữ liệu không có"  để khi trong bảng không có dữ liệu chuỗi Text nằm trong thuộc tính EmptyDataText sẽ được đưa ra.

Bạn cũng có thể Customize chuỗi text hiển thị ra khi chưa có nội dung  bằng  EmptyDataTemple như ví dụ sau:

Ví dụ: DetailViewDatanull.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DetailViewDatanull.aspx.cs" Inherits="DetailViewDatanull" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Null Data</title>

    <style type="text/css">

        .noMatch{background-color:#ffff66;padding:10px;font-family:Arial,Sans-Serif;}

        .noMatch h1{color:red;font-size:16px;font-weight:bold;}

    </style>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:DetailsView ID="DetailsView1"

         DataSourceID="SqlDataSource1" runat="server" Height="50px" Width="125px">

         <EmptyDataTemplate>

            <div class="noMatch">

                <h1>No Matching Results!</h1>

                Please select a different record.

            </div>

         </EmptyDataTemplate>

        </asp:DetailsView>

        <asp:SqlDataSource ID="SqlDataSource1"

         ConnectionString="<%$ConnectionStrings:hcubiuData %>"

         SelectCommand="select * from tblProduct" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

Sử dụng điều khiển GridView

GridView trình bày dữ liệu như thẻ Table của HTML mà mỗi mục dữ liệu như vói thẻ TR.

Chúng ta cùng đi vào xây dựng một lớp gridViewHelper giúp việc điền dữ liệu vào gridView trong các ví dụ của chúng ta.

Trong chương này ngoài điều khiển  ngoài điều khiển GridView các bạn sẽ được giới thiệu thêm về điều khiển sqlDatasource.

 Ta đi vào một ví dụ đơn giản: Bạn hiển thị dữ liệu từ bảng Giới thiệu ra 1 GridView

Trong file web.config: bạn thêm vào

  <connectionStrings>

    <add name="Gridview" connectionString="Data Source=.SQLEXPRESS; AttachDbFilename=|DataDirectory|Database.mdf;Integrated Security=True;user Instance=True" />

  </connectionStrings>

Bạn tạo một trang SimpleGridview.aspx và đưa vào một điều khiển SqlDataSource và điền vào nó các thuộc tính như sau:

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="SimpleGridview.aspx.cs" Inherits="_Default" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>GridView</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:GridView AllowSorting="true" DataSourceID="SqlDataSource1"

         ID="GridView1" runat="server">

        </asp:GridView>

        <asp:SqlDataSource ConnectionString="<%$ ConnectionStrings:Gridview %>"

         SelectCommand="select * from tblIntrodure" ID="SqlDataSource1" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

Như bạn thấy trong ví dụ trên đối tượng SqlDatasource chứa chỗi kết nối String được lấy ra từ file web.config và thuộc tính selectCommand sẽ đưa vào một chuỗi sql dạng select để lấy tất cả dữ liệu trong bảng tblIntrodure

Và điều khiển GridView của ta sẽ điền vào thuộc tính DataSourceID=”_tên_sqlDatasource”.

Sorting Data

Bạn có thể trình bày sắp xếp dữ liệu trong GridView với thuộc tính AllowSorting

Ví dụ: cũng với ví dụ 1 bạn thêm vào thuộc tính  AllowSorting="true"   khi này bạn sẽ thấy trên dòng Header của Gridview sẽ xuất hiện như LinkButton và khi bạn nhấn vào nó, nó cho phép bạn sắp xếp thông tin theo thứ tự giảm dần và tăng dần của dữ liệu

Paging Data

Khi số trường dữ liệu lớn bạn có thể thực hiện phân trang cho dữ liệu với việc thiết đặt thuộc tính   AllowPaging="true"      cũng với ví dụ trên bạn thêm vào thuộc tính AllowPaging, cho nó giá trị bằng true và thiết lập thuộc tính PageSize(số dòng trên một trang) bằng 3 bạn sẽ thấy sự thay đổi

Bạn có thể chỉnh sửa trình bày xuất hiện phân trang theo ý mình thay vì mặc định nó sẽ trình bày bởi những con số ở cuối của GridView với thuộc tính PagerSetting

Ví dụ bạn thêm vào 1 số thuộc tính cho GridView của chúng ta như sau

<asp:GridView AllowSorting="true" PageSize="3"

        PagerSettings-Mode="NextPreviousFirstLast" PagerSettings-Position="TopAndBottom" PagerStyle-HorizontalAlign="Center"

        AllowPaging="true" DataSourceID="SqlDataSource1"

         ID="GridView1" runat="server">

        </asp:GridView>

Lớp PagingSetting hỗ trợ các thuộc tính sau:

FirtPageImageURL: cho phép hiển thị ảnh của liên kết tới trang đầu tiên

FirstPageText: Cho phép hiển thị Text của liên kết đến trang đầu tiên

LastPageImageUrl: cho phép hiển thị ảnh của liên kết tới trang cuối cùng.

LastPageTex: Cho phép hiển thị Text của liên kết đến trang cuối cùng.

Mode: cho phép bạn lựa chọn hiển thị kiểu cho giao diện phân trang, nó có thể có các giá trị sau:

NextPrevious, NextPreviousFirstLast, Numeric, and NumericFirstLast.

NextPageImageUrl: Cho phép hiển thị ảnh liên kết tới trang tiếp theo.

NextPageText: Text hiển thị cho liên kết đến trang tiếp theo .

PageButtonCount: hiển thị tổng số trang.

Position: chỉ định vị trí hiển thị phân trang. Giá trị của nó có thể là: Bottom, Top, and TopAndBottom.

PreviousPageImageUrl: ảnh hiển thị cho liên kết tới trang trước đó.

PreviousPageText: Text hiển thị cho liên kết tới trang trước đó.

Visible: Cho phép hiển thị hay ẩn giao diện phân trang.

Ví dụ tiếp theo chúng ta cùng customize phân trang 1 GridView với PagerTemplate GridView như sau:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridViewpage.aspx.cs" Inherits="GridViewpage" %>

 

<script runat="server">

    protected void GridView1_DataBound(object sender, EventArgs e)

    {

        Menu menuPager = (Menu)this.GridView1.BottomPagerRow.FindControl("menuPager");

        for (int i = 0; i < GridView1.PageCount; i++)

        {

            MenuItem item = new MenuItem();

            item.Text = Convert.ToString(i+1);

            item.Value = i.ToString();

            if (GridView1.PageIndex == i)

                item.Selected = true;

            menuPager.Items.Add(item);

            menuPager.DataBind();

        }

    }

 

    protected void menuPager_MenuItemClick(object sender, MenuEventArgs e)

    {

        GridView1.PageIndex = Int32.Parse(e.Item.Value);

    }

</script>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Gridview</title>

    <style type="text/css">

        .menu td{padding:5px 0px;}

        .selectedPage a{font-weight:bold;color:red;}

    </style>

</head>

<body>

    <form id="form1" runat="server">

    <div>

        <asp:GridView ID="GridView1" AllowPaging="true" PageSize="3"

         DataSourceID="SqlDataSource1" OnDataBound="GridView1_DataBound" runat="server">

         <PagerTemplate>

            <table>

                <tr>

                    <td>

                        <asp:LinkButton id="lnkPrevious" Text="&lt; Prev" CommandName="Page" CommandArgument="Prev" ToolTip="Previous Page" Runat="server" />

                    </td>

                    <td>

                        <asp:Menu id="menuPager" Orientation="Horizontal" OnMenuItemClick="menuPager_MenuItemClick" StaticSelectedStyle-CssClass="selectedPage" CssClass="menu" Runat="server" />

                    </td>

                    <td>

                        <asp:LinkButton id="lnkNext" Text="Next &gt;" CommandName="Page" CommandArgument="Next" ToolTip="Next Page" Runat="server" />

                    </td>

                </tr>

            </table>

         </PagerTemplate>

        </asp:GridView>

        <asp:SqlDataSource ID="SqlDataSource1" ConnectionString="<%$ConnectionStrings:Gridview %>"

         SelectCommand="select * from tblIntrodure" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

Ở đây trong PagerTemple bạn thêm vào 2 điều khiển Linkbutton và 1 điều khiển Menu để thực hiện phân trang. 2 điều khiển Linkbutton với các thuộc tính Command và CommandArgument được GridView hỗ trợ lên ta không phải viết các phương thức để thực thi còn với điều menu trong sự kiện DataBound của GridView bạn cung cấp một phương thức GridView1_DataBound  để điền dữ liệu cho Menu.

Thay đổi dữ liệu trong GridView

Điều khiển GridView chỉ cho phép bạn thay đổi hoặc xoá dữ liệu trong Database được điền vào nó.

Ví dụ sau sẽ hướng dẫn bạn cách chỉnh sửa dữ liệu và xoá dữ liệu trong điều khiển GridView.

Ví dụ trang GridviewEdit.aspx

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="GridviewEdit.aspx.cs" Inherits="_Default" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>GridView</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:GridView AllowSorting="true" PageSize="10"

        PagerSettings-Mode="NextPreviousFirstLast" PagerSettings-Position="TopAndBottom" PagerStyle-HorizontalAlign="Center"

        AutoGenerateDeleteButton="true"

        AutoGenerateEditButton="true"

        DataKeyNames="pkIntrodureID"

        AllowPaging="true" DataSourceID="SqlDataSource1"

         ID="GridView1" runat="server">

        </asp:GridView>

        <asp:SqlDataSource ConnectionString="<%$ ConnectionStrings:Gridview %>"

         SelectCommand="select pkIntrodureID,sTitle,sSummary,sContent,iPosition from tblIntrodure"

         UpdateCommand="Update tblIntrodure set sTitle=@sTitle, sSummary=@sSummary, sContent=@sContent,iPosition=@iPosition where pkIntrodureID=@pkIntrodureID"

         DeleteCommand="Delete from tblIntrodure where pkIntrodureID=@pkIntrodureID"

         ID="SqlDataSource1" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

Khi nhấn vào nút Edit bạn sẽ thấy các TextBox sẽ hiện ra tương ứng với dòng được nhấn và chúng ta có thể thay đổi dữ liệu trong đó để xác nhận thay đổi dữ liệu bạn nhấn Update.

Chú ý rằng GridView sẽ tự động đưa ra CheckBox nếu có trường trong bảng dữ liệu là Boolean. để thay đổi hay xoá dữ liệu bạn phải thiết lập thuộc tính DataKeyNames với giá trị là khoá chính trong bảng cơ sở dữ liệu của bạn.

Hiển thị dữ liệu trống:

GridView bao gồm hai thuộc tính cho phép bạn hiển thị nội dung cho GridView khi không có dữ liệu, bạn có thể sử dụng EmptyDataText hoặc thuộc tính EmptyDataTemplate để hiển thị nội dung khi dữ liệu rỗng.

Ví dụ trang GridviewdataNull.aspx

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="GridviewdataNull.aspx.cs" Inherits="_Default" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>GridView</title>

</head>

<body>

    <form id="form1" runat="server">

    <div id="navcontain">

        <asp:GridView AllowSorting="true" PageSize="10"

        PagerSettings-Mode="NextPreviousFirstLast" PagerSettings-Position="TopAndBottom" PagerStyle-HorizontalAlign="Center"

        EmptyDataText="trong bảng không có dữ liệu"

        DataKeyNames="pkIntrodureID"

        AllowPaging="true" DataSourceID="SqlDataSource1"

         ID="GridView1" runat="server">

        </asp:GridView>

        <asp:SqlDataSource ConnectionString="<%$ ConnectionStrings:Gridview %>"

         SelectCommand="select * from tblHello"

         ID="SqlDataSource1" runat="server"></asp:SqlDataSource>

    </div>

    </form>

</body>

</html>

0