栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > asp

asp.net实现DataList与Repeater嵌套绑定的方法

asp 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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相关内容感兴趣的读者可查看本站专题:《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。

希望本文所述对大家asp.net程序设计有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/56472.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号