asp.net中怎么实现DataList与Repeater的嵌套绑定-创新互联
                                            这篇文章将为大家详细讲解有关asp.net中怎么实现DataList与Repeater的嵌套绑定,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

具体如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="home.aspx.cs" Inherits="home" %>
home.aspx.cs
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class home : System.Web.UI.Page
{
  protected void Page_Load(object sender, EventArgs e)
  {
    myCheck.IsLoginNonReturn();
    if (!IsPostBack)
    {
      Bind_monitorTypeList();
    }
  }
  protected void Bind_monitorTypeList()
  {
    string sql = "select monitor_type_id,monitor_type_name from monitor_type";
    DbConn conn = new DbConn();
    DataSet ds = conn.DataSet(sql,"monitor_type");
    monitorTypeList.DataSource = ds.Tables[0];
    monitorTypeList.DataBind();
    ds.Dispose();
    conn.Close();
  }
  protected void monitorTypeList_ItemDataBound(object sender, DataListItemEventArgs e)
  {
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
      string monitor_type_id = ((DataRowView)e.Item.DataItem).Row["monitor_type_id"].ToString();
      Repeater monitorConfigList = (Repeater)e.Item.FindControl("monitorConfigList");
      if (monitorConfigList != null)
      {
        string sql = "select monitor_id,nonitor_name,plugpath from monitor where monitor_type_id=" + monitor_type_id;
        DbConn conn = new DbConn();
        DataSet ds = conn.DataSet(sql, "monitor");
        monitorConfigList.DataSource = ds.Tables[0];
        monitorConfigList.DataBind();
        ds.Dispose();
        conn.Close();
      }
    }
  }
}关于asp.net中怎么实现DataList与Repeater的嵌套绑定就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
网站题目:asp.net中怎么实现DataList与Repeater的嵌套绑定-创新互联
当前路径:http://www.scyingshan.cn/article/deosie.html

 建站
建站
 咨询
咨询 售后
售后
 建站咨询
建站咨询 
 