中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

使用gridview怎么實(shí)現(xiàn)自動(dòng)排序-創(chuàng)新互聯(lián)

本篇文章為大家展示了使用gridview怎么實(shí)現(xiàn)自動(dòng)排序,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

10年積累的網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有四平免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

示例如下:前臺(tái)

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "/tupian/20230522/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server">    <title>無標(biāo)題頁</title></head><body>    <form id="form1" runat="server">    <div>        <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None" AllowSorting="True" OnSorting="GridView1_Sorting">            <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />            <RowStyle BackColor="#EFF3FB" />            <Columns>                <asp:BoundField DataField="id" HeaderText="ID" SortExpression="id" />                <asp:BoundField DataField="name" HeaderText="NAME" SortExpression="name" />                <asp:BoundField DataField="age" HeaderText="AGE" SortExpression="age" />            </Columns>            <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />            <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />            <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />            <EditRowStyle BackColor="#2461BF" />            <AlternatingRowStyle BackColor="White" />        </asp:GridView>    </div>    </form></body></html>

前臺(tái)注意點(diǎn):
需要對(duì)GridView啟用AllowSorting、設(shè)置OnSorting事件,對(duì)需要排序的列設(shè)定SortExpression屬性。

后臺(tái)

using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page {    protected void Page_Load(object sender, EventArgs e)    {        if (!IsPostBack)        {            // 設(shè)定初始排序參數(shù)值
            // 錯(cuò)誤的屬性設(shè)置方法:SortExpression、SortDirection均是GridView只讀屬性,無法直接賦值。            //this.GridView1.SortExpression = "id";            //this.GridView1.SortDirection = "ASC";
            // 正確的屬性設(shè)置方法            this.GridView1.Attributes.Add("SortExpression", "id");            this.GridView1.Attributes.Add("SortDirection", "ASC");
            // 綁定數(shù)據(jù)源到GridView            this.BindGridView();        }    }
    /// <summary>    /// GridView排序事件    /// </summary>    protected void GridView1_Sorting(object sender, GridViewSortEventArgs e)    {        // 從事件參數(shù)獲取排序數(shù)據(jù)列        string sortExpression = e.SortExpression.ToString();
        // 假定為排序方向?yàn)椤绊樞颉?nbsp;       string sortDirection = "ASC";
        // “ASC”與事件參數(shù)獲取到的排序方向進(jìn)行比較,進(jìn)行GridView排序方向參數(shù)的修改        if (sortExpression == this.GridView1.Attributes["SortExpression"])        {            //獲得下一次的排序狀態(tài)            sortDirection = (this.GridView1.Attributes["SortDirection"].ToString() == sortDirection ? "DESC" : "ASC");        }
        // 重新設(shè)定GridView排序數(shù)據(jù)列及排序方向        this.GridView1.Attributes["SortExpression"] = sortExpression;        this.GridView1.Attributes["SortDirection"] = sortDirection;
        this.BindGridView();    }
    /// <summary>    /// 綁定到GridView    /// </summary>    private void BindGridView()    {        // 獲取GridView排序數(shù)據(jù)列及排序方向        string sortExpression = this.GridView1.Attributes["SortExpression"];        string sortDirection = this.GridView1.Attributes["SortDirection"];
        // 調(diào)用業(yè)務(wù)數(shù)據(jù)獲取方法        DataTable dtBind = this.getDB();
        // 根據(jù)GridView排序數(shù)據(jù)列及排序方向設(shè)置顯示的默認(rèn)數(shù)據(jù)視圖        if ((!string.IsNullOrEmpty(sortExpression)) && (!string.IsNullOrEmpty(sortDirection)))        {            dtBind.DefaultView.Sort = string.Format("{0} {1}", sortExpression, sortDirection);        }
        // GridView綁定并顯示數(shù)據(jù)        this.GridView1.DataSource = dtBind;        this.GridView1.DataBind();    }
    /// <summary>    /// 獲取數(shù)據(jù)源的方法    /// </summary>    /// <returns>數(shù)據(jù)源</returns>    private DataTable getDB()    {        DataTable dt = new DataTable();
        dt.Columns.Add("id");        dt.Columns.Add("name");        dt.Columns.Add("age");
        dt.Rows.Add(new object[] { "000001", "hekui", "26" });        dt.Rows.Add(new object[] { "000002", "zhangyu", "26" });        dt.Rows.Add(new object[] { "000003", "zhukundian", "27" });        dt.Rows.Add(new object[] { "000004", "liyang", "25" });        dt.Rows.Add(new object[] { "000005", "caili", "27" });
        return dt;    }}

上述內(nèi)容就是使用gridview怎么實(shí)現(xiàn)自動(dòng)排序,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

文章題目:使用gridview怎么實(shí)現(xiàn)自動(dòng)排序-創(chuàng)新互聯(lián)
文章起源:http://www.rwnh.cn/article34/dgsgpe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、外貿(mào)網(wǎng)站建設(shè)、動(dòng)態(tài)網(wǎng)站、App設(shè)計(jì)、品牌網(wǎng)站制作Google

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)
万载县| 新营市| 中超| 茌平县| 古田县| 敖汉旗| 隆德县| 苍梧县| 神池县| 翁源县| 桃园县| 东阳市| 哈密市| 措勤县| 从江县| 五峰| 清流县| 尉氏县| 营山县| 武穴市| 金阳县| 宜川县| 阳原县| 富锦市| 永德县| 宜君县| 上饶市| 绍兴市| 凤山县| 皮山县| 盘山县| 安宁市| 福州市| 宁国市| 深水埗区| 遵义县| 嫩江县| 子长县| 房产| 台湾省| 兴仁县|