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,036

HOME > .NET Framework > Forum > sort กับ page gridview คือตอนนี้ผม sort ได้แล้ว แต่พอเอา sorting ไปใช้ร่วมกับ paging



 

sort กับ page gridview คือตอนนี้ผม sort ได้แล้ว แต่พอเอา sorting ไปใช้ร่วมกับ paging

 



Topic : 027122



โพสกระทู้ ( 219 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook



คือตอนนี้ผม sort ได้แล้ว
แต่พอเอา sorting ไปใช้ร่วมกับ paging
มันจะเกิดปัญหาว่า มันจะ sort แค่หน้าแรก
พอคลิก เปลี่ยน page มันก็ไม่ sort แล้วอะครับ
ต้องทำยังไงครับ ผมจึงจะแก้ปัญหานี้ได้

ส่วน DataBind ครับ
Code (C#)
    private void BindGridControl(String sortField)
    {
        string strConn2 = "Data Source=MIXAR-PC;Initial Catalog=StockProductInfo;Integrated Security=True";

        SqlConnection Conn2 = new SqlConnection(strConn2);
        if (Conn2.State == ConnectionState.Open)
        {
            Conn2.Close();
        }
        Conn2.ConnectionString = strConn2;
        Conn2.Open();

        string sqlCustSearch;
        sqlCustSearch = "SELECT DISTINCT masCustomer.Cust_ID AS CustID, ";
        sqlCustSearch += "masCustomer.Cust_FName AS Firstname, ";
        sqlCustSearch += "masCustomer.Cust_LName AS Lastname, ";
        sqlCustSearch += "masCustomer.Cust_Tel AS Telephone, ";
        sqlCustSearch += "tabCustomerType.CustType_Name AS Type ";
        sqlCustSearch += "FROM masCustomer, tabCustomerType ";
        sqlCustSearch += "WHERE (masCustomer.CustType_ID = tabCustomerType.CustType_ID)";

        if (ddlCustomerType.SelectedItem.Value != "Select...")
        {
            sqlCustSearch += "AND (tabCustomerType.CustType_Name = '" + ddlCustomerType.SelectedItem.Text + "')";
        }
        if (txtCustID.Text != "")
        {
            sqlCustSearch += "AND (masCustomer.Cust_ID LIKE '" + txtCustID.Text + "%')";
        }
        if (txtFirstname.Text != "")
        {
            sqlCustSearch += "AND (masCustomer.Cust_FName LIKE '" + txtFirstname.Text + "%')";
        }
        if (txtLastname.Text != "")
        {
            sqlCustSearch += "AND (masCustomer.Cust_LName LIKE '" + txtLastname.Text + "%')";
        }
        if (txtTelephone.Text != "")
        {
            sqlCustSearch += "AND (masCustomer.Cust_Tel LIKE '" + txtTelephone.Text + "%')";
        }

        sqlCustSearch += "ORDER BY " + sortField;

        SqlDataAdapter da3 = new SqlDataAdapter(sqlCustSearch, Conn2);
        da3.Fill(ds, "Customers");

        dgvCustResult.DataSource = ds.Tables["Customers"];
        dgvCustResult.DataBind();

        Conn2.Close();
    }


อันนี้ส่วน paging กับ sorting ครับ
Code (C#)
protected void dgvCustResult_PageIndexChanging(Object sender, GridViewPageEventArgs e)
    {
        BindGridControl("CustID");
        dgvCustResult.PageIndex = e.NewPageIndex;
        dgvCustResult.DataBind();
    }
    protected void SortData(Object sender, GridViewSortEventArgs e)
    {
        BindGridControl(e.SortExpression);
    }

ขอบคุณล่วงหน้าครับท่านผู้รู้



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-05-07 14:14:46 By : mixarstudio View : 2373 Reply : 2
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

GridViewAllowSortingAllowPaging.aspx (C#)
<%@ Page Language="C#" Debug="true" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<script runat="server">
String strFields = "CustomerID";
void Page_Load(object sender,EventArgs e)
{
if(!Page.IsPostBack)
{
BindData();
}
}

void BindData()
{
OleDbConnection objConn = new OleDbConnection();
OleDbCommand objCmd = new OleDbCommand();
OleDbDataAdapter dtAdapter = new OleDbDataAdapter();
DataSet ds = new DataSet();
String strConnString,strSQL;

strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +
Server.MapPath("database/mydatabase.mdb") + ";";
strSQL = "SELECT * FROM customer ORDER BY " + strFields + " ASC";

objConn.ConnectionString = strConnString;
objCmd.Connection = objConn;
objCmd.CommandText = strSQL;
objCmd.CommandType = CommandType.Text;

dtAdapter.SelectCommand = objCmd;

dtAdapter.Fill(ds);

//*** BindData to GridView ***//
myGridView.DataSource = ds;
myGridView.DataBind();

dtAdapter = null;
objConn.Close();
objConn = null;
}

void ShowPageCommand(Object s, GridViewPageEventArgs e)
{
myGridView.PageIndex = e.NewPageIndex;
BindData();
}

void SortCommand(Object s, GridViewSortEventArgs e)
{
strFields = e.SortExpression;
BindData();
}

void myGridView_RowDataBound(Object s, GridViewRowEventArgs e)
{
//*** CustomerID ***//
Label lblCustomerID = (Label)(e.Row.FindControl("lblCustomerID"));
if (lblCustomerID != null)
{
lblCustomerID.Text = (string)DataBinder.Eval(e.Row.DataItem, "CustomerID");
}

//*** Email ***//
Label lblName = (Label)(e.Row.FindControl("lblName"));
if (lblName != null)
{
lblName.Text = (string)DataBinder.Eval(e.Row.DataItem, "Name");
}

//*** Name ***//
Label lblEmail = (Label)(e.Row.FindControl("lblEmail"));
if (lblEmail != null)
{
lblEmail.Text = (string)DataBinder.Eval(e.Row.DataItem, "Email");
}

//*** CountryCode ***//
Label lblCountryCode = (Label)(e.Row.FindControl("lblCountryCode"));
if (lblCountryCode != null)
{
lblCountryCode.Text = (string)DataBinder.Eval(e.Row.DataItem, "CountryCode");
}

//*** Budget ***//
Label lblBudget = (Label)(e.Row.FindControl("lblBudget"));
if (lblBudget != null)
{
lblBudget.Text = DataBinder.Eval(e.Row.DataItem, "Budget").ToString();
}

//*** Used ***//
Label lblUsed = (Label)(e.Row.FindControl("lblUsed"));
if (lblUsed != null)
{
lblUsed.Text = DataBinder.Eval(e.Row.DataItem, "Used").ToString();
}
}

</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - GridView</title>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView id="myGridView" runat="server" PageSize="2" OnSorting="SortCommand"
OnPageIndexChanging="ShowPageCommand" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" onRowDataBound="myGridView_RowDataBound">

<Columns>

<asp:TemplateField SortExpression="CustomerID" HeaderText="CustomerID">
<ItemTemplate>
<asp:Label id="lblCustomerID" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>

<asp:TemplateField SortExpression="Name" HeaderText="Name">
<ItemTemplate>
<asp:Label id="lblName" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>

<asp:TemplateField SortExpression="Email" HeaderText="Email">
<ItemTemplate>
<asp:Label id="lblEmail" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>

<asp:TemplateField SortExpression="CountryCode" HeaderText="CountryCode">
<ItemTemplate>
<asp:Label id="lblCountryCode" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>

<asp:TemplateField SortExpression="Budget" HeaderText="Budget">
<ItemTemplate>
<asp:Label id="lblBudget" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>

<asp:TemplateField SortExpression="Used" HeaderText="Used">
<ItemTemplate>
<asp:Label id="lblUsed" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>

</Columns>
</asp:GridView>
</form>
</body>
</html>


Ref : (C#) ASP.NET GridView Control - AllowSorting and AllowPaging






Date : 2009-05-07 21:09:07 By : webmaster
 


 

No. 2

Guest



Date : 2010-08-17 10:10:51 By : tk
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : sort กับ page gridview คือตอนนี้ผม sort ได้แล้ว แต่พอเอา sorting ไปใช้ร่วมกับ paging
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 02
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 อัตราราคา คลิกที่นี่