程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> asp.net 2.0中gridview裡嵌套dropdownlist

asp.net 2.0中gridview裡嵌套dropdownlist

編輯:.NET實例教程


在ASP.Net 2.0中,在一個gridvIEw裡,可以嵌套進一個dropdownlist,這是十分容易的事情,而這裡講的是,
在每個dropdownlist裡,都綁定的是不同的內容,比如在northwind數據庫中,可以用GRIDVIEW顯示出
每個category類別,同時每一行的category類別裡可以已dropdonwlist下拉框的形式,列出該分類下的所有
產品.下面介紹實現的方法

首先是頁面部分的代碼
 <ASP:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowDataBound="GridVIEw1_RowDataBound">
<Columns>

<ASP:BoundField DataFIEld="CategoryID" HeaderText="CategoryID" />

<ASP:BoundField DataFIEld="CategoryName" HeaderText="Category Name" />

<ASP:TemplateFIEld HeaderText="Products">

<ItemTemplate>

<ASP:DropDownList ID="DropDownList1" runat="server">

</ASP:DropDownList>

</ItemTemplate>

</ASP:TemplateFIEld>

</Columns>

</ASP:GridVIEw>

在codebehind部分,
 protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {

            // This is because Table[1] contains CategorIEs

            GridVIEw1.DataSource = GetDataSet().Tables[1];

            GridVIEw1.DataBind();

        }


    }
    private DataSet GetDataSet()
    {

        string query = @"SELECT p.CategoryID,p.ProductID, p.ProductName FROM Products p

SELECT c.CategoryID,c.CategoryName FROM CategorIEs c";

        string connectionString = "Server=localhost;Database=Northwind;user id=sa;passWord=123456";

        SqlConnection myConnection = new SqlConnection(connectionString);

        SqlDataAdapter ad = new SqlDataAdapter(query, myConnection);

        DataSet ds = new DataSet();

        ad.Fill(ds);

        return ds;

    }
    在上面的代碼中,首先我們通過典型的dataset返回,綁定到gridview上去,注意這裡sql語句裡有兩句,第一句是返回產品,第二句是返回所有的類別category,而在綁定gridvIEw時,我們用
  GridView1.DataSource = GetDataSet().Tables[1];,將第一個table表裡的category記錄綁定到gridvIEw裡去,接下來,我們要處理模版列中的dropdownlist了,這個可以在row_databound事件中寫入代碼,如下
   protected void GridView1_RowDataBound(object sender, GridVIEwRowEventArgs e)
    {
        DataTable myTable = new DataTable();

        DataColumn productIDColumn = new DataColumn("ProductID");

     &nbsp;  DataColumn productNameColumn = new DataColumn("ProductName");

        myTable.Columns.Add(productIDColumn);

        myTable.Columns.Add(productNameColumn);

        DataSet ds = new DataSet();

        ds = GetDataSet();

        int categoryID = 0;

        string expression = String.Empty;

        if (e.Row.RowType == DataControlRowType.DataRow)
        {

            categoryID = Int32.Parse(e.Row.Cells[0].Text);

            expression = "CategoryID = " + categoryID;

            DropDownList ddl = (DropDownList)e.Row.FindControl("DropDownList1");

            DataRow[] rows = ds.Tables[0].Select(expression);

 

            foreach (DataRow row in rows)
            {

                DataRow newRow = myTable.NewRow();

                newRow["ProductID"] = row["ProductID"];

                newRow["ProductName"] = row["ProductName"];

                myTable.Rows.Add(newRow);

            }

            ddl.DataSource = myTable;

            ddl.DataTextFIEld = "ProductName";

            ddl.DataValueFIEld = "ProductID";

            ddl.DataBind();

        }

  }
  這裡的原理大致如下:
首先,我們建立了一個datatable,包含了productid,productname列,然後將其與 gridvIEw綁定,之後再用
 categoryID = Int32.Parse(e.Row.Cells[0].Text);

            expression = "CategoryID = " + categoryID;
構造一個篩選表達式,這裡指定為categoryID,然後通過
 DropDownList ddl = (DropDownList)e.Row.FindControl("DropDownList1");
           DataRow[] rows = ds.Tables[0].Select(expression);
  ,找出符合其類別等於某一categoryID的所有產品,這裡構造出datarow集合了,最後,使用循環
,將某類別下的產品全部添加到datatable中去,最後將datatable和dropdownlist綁定,就實現功能了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved