您现在的位置是:网站首页> 编程资料编程资料
asp.net实现DataList与Repeater嵌套绑定的方法_实用技巧_
2023-05-24
411人已围观
简介 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程序设计有所帮助。
您可能感兴趣的文章:
相关内容
- ASP.NET中ImageButton图片按钮控件的使用_基础应用_
- Asp.net(C#)读取数据库并生成JS文件制作首页图片切换效果(附demo源码下载)_实用技巧_
- ASP.NET中Image控件使用详解_基础应用_
- asp.net+Ligerui实现grid导出Excel和Word的方法_实用技巧_
- ASP.NET中HyperLink超链接控件的使用方法_基础应用_
- asp.net实现拒绝频繁的IP访问的方法_实用技巧_
- ASP.NET中HiddenField隐藏域控件的使用方法_基础应用_
- ASP.NET中FileUpload文件上传控件应用实例_基础应用_
- 在ASP.NET 2.0中操作数据之二十七:创建自定义排序用户界面_自学过程_
- 在ASP.NET 2.0中操作数据之二十六:排序自定义分页数据_自学过程_
