网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

asp.net遍历控件的实现

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/13
t;asp:textbox runat="Server" id="txtName" />
</form>
</body>
</html>

以上代码运行结果如下:


A List of the Controls in the Controls Collection


3、动态地创建控件、遍历创建的控件以及改变控件属性的一个应用。
用户输入一个1-10的整数,按按钮后动态创建相应数字的TextBox。代码如下:


System.Web.UI.LiteralControl
System.Web.UI.WebControls.Label
System.Web.UI.LiteralControl
System.Web.UI.HtmlControls.HtmlForm
System.Web.UI.LiteralControl
System.Web.UI.WebControls.TextBox
System.Web.UI.LiteralControl
System.Web.UI.ResourceBasedLiteralControl
这下TextBox控件真的露出了庐山真面目。

script runat="server" language="C#">

int count = 1;

void IterateThroughChildren(Control parent) //遍历所有控件
{
foreach (Control c in parent.Controls)
{
if (c.GetType().ToString().Equals("System.Web.UI.WebControls.TextBox") &&
c.ID == null) //找到所有新创建的TextBox控件(新创建的TextBox的ID为空,有别于页面中id="txtTBCount"的TextBox)
{
((TextBox) c).Text = "TextBox " + count.ToString(); //改变TextBox的属性。
((TextBox) c).Columns = 10; //改变TextBox的属性
count++; //count为全局变量,记录找到的TextBox数量
}

if (c.Controls.Count > 0)
{
IterateThroughChildren(c);
}
}
}

void CreateTextBoxes(Object sender, EventArgs e) //按下按钮激活的事件
{
if (!Page.IsValid) return;

int n = Int32.Parse(txtTBCount.Text); //取得用户输入的数字。
//创建n个TextBox,并把它们加到PlaceHolder里面
for (int i = 0; i < n; i++)
{
TextBoxesHere.Controls.Add(new TextBox());
}

//遍历并设置每个TextBox的属性
IterateThroughChildren(this);
}
</script>

<form runat="server">
How many TextBoxes would you like to create? (<i>Please choose vaule between 1 and 10</i>)<br />
<asp:textbox runat="Server" id="txtTBCount" Columns="3" />
<asp:RangeValidator runat="server" ControlToValidate="txtTBCount"
MinimumValue="1" MaximumValue="10" Type="Integer"
ErrorMessage="Make sure that you choose a value between 1 and 10!" />
<br />
<asp:button runat="server" Text="Create Dynamic TextBoxes"
OnClick="CreateTextBoxes" />
<p>
<asp:PlaceHolder runat="server" id="TextBoxesHere" />
</form>
 

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号