asp.net中怎么实现DataList与Repeater的嵌套绑定-创新互联
这篇文章将为大家详细讲解有关asp.net中怎么实现DataList与Repeater的嵌套绑定,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
成都创新互联公司专业为企业提供镇海网站建设、镇海做网站、镇海网站设计、镇海网站制作等企业网站建设、网页设计与制作、镇海企业网站模板建站服务,10余年镇海做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。具体如下:
<%@ 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://ybzwz.com/article/deosie.html