码迷,mamicode.com
首页 > Web开发 > 详细

asp.net 动态添加多个用户控件

时间:2017-02-17 15:10:09      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:space   value   public   his   .text   set   template   add   tar   

动态添加多个相同用户控件,并使每个用户控件获取不同的内容。

用户控件代码: 
代码WebControls 

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
namespace xuyuanwang.myControl 

public partial class Lablexuyuan : System.Web.UI.UserControl 

string a = "ok"; 
public string A 

set 

a = value; 

get 

return a; 


protected void Page_Load(object sender, EventArgs e) 

Label1.Text = A; 


aspx页面代码: 

public partial class WebForm1 : System.Web.UI.Page 

protected void Page_Load(object sender, EventArgs e) 


protected void Button1_Click(object sender, EventArgs e) 

myControl.Lablexuyuan ctl = (myControl.Lablexuyuan)Page.LoadControl("myControl/Lablexuyuan.ascx"); 
ctl.A = this.TextBox1.Text; 
ArrayList list = addl(ctl); 
for (int i = 0; i < list.Count; i++) 

myControl.Lablexuyuan ctl2 = (myControl.Lablexuyuan)list[i]; 
this.UpdatePanel1.ContentTemplateContainer.Controls.Add(ctl2); 


private System.Collections.ArrayList addl(myControl.Lablexuyuan l) 

System.Collections.ArrayList list = null; 
if (Session["a"] != null) 

list = (ArrayList)Session["a"]; 

else 

list = new ArrayList(); 

list.Add(l); 
Session["a"] = list; 
return list; 

asp.net 动态添加多个用户控件

标签:space   value   public   his   .text   set   template   add   tar   

原文地址:http://www.cnblogs.com/sjqq/p/6409614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!