FindControl的使用方法

Control.FindControl (String):在当前的命名容器中搜索带指定 id参数的服务器控件。(有点类似javascript中的getElementById(string))

简单的例子:

<form id="form1" runat="server">

<div>

<asp:TextBox ID="TextBox1" runat="server">TextBox</asp:TextBox>

<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />

<br />

<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

</div>

</form>

如果需要获得页面中的"TextBox1",代码中可以使用this.TextBox1来引用,这里我们使用FindControl:

protected void Button1_Click(object sender, EventArgs e)

{

//Control c = this.FindControl("TextBox1");

//TextBox tb= (TextBox)c;

//FindControl返回的是一个Control类型的控件,需要强制类型转化成TextBox类型

TextBox tb=(TextBox)this.FindControl("TextBox1");

this.Label1.Text = tb.Text;   
    }

当TextBox1放到其他控件里应该怎么查找呢?

<div>

<asp:Panel ID="Panel1" runat="server" Height="50px" ;125px">

<asp:TextBox ID="TextBox1" runat="server">TextBox</asp:TextBox>

<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />

</asp:Panel>

</div>

当TextBox1放到Panel里,似乎没什么影响 TextBox tb=(TextBox)this.FindControl("TextBox1"),

当查看生存页面的HTML代码是发现,TextBox的ID并没有改变,所以可以获得TextBox1。

<div>

<div id="Panel1" style="height:50px;;">

<input name="TextBox1" type="text" value="TextBoxdsd" id="TextBox1" />

<span id="Label1">TextBoxdsd</span>

<input type="submit" name="Button1" value="Button" id="Button1" />

</div>

</div>

当TextBox1放到DataGrid中

<asp:DataGrid ID="dg1" runat="server" OnSelectedIndexChanged="dg1_SelectedIndexChanged">

<Columns>

<asp:TemplateColumn>

<ItemTemplate>

<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

</ItemTemplate>

</asp:TemplateColumn>

<asp:ButtonColumn CommandName="Select" Text="选择"></asp:ButtonColumn>

</Columns>

</asp:DataGrid>

这时候this.FindControl("TextBox1")==null,无法获得TextBox1,查看生成页面HTML发现,页面有多个

<input name="dg1$ctl02$TextBox1" type="text" id="dg1_ctl02_TextBox1" />

<input name="dg1$ctl03$TextBox1" type="text" id="dg1_ctl03_TextBox1" />

TextBox1隐藏了,给DataGrid添加选择列,通过以下方法获得被选择行的TextBox1

protected void dg1_SelectedIndexChanged(object sender, EventArgs e)

{

Control c = this.dg1.Items[this.dg1.SelectedIndex].FindControl("TextBox1");

//Control c = this.dg1.SelectedItem.FindControl("TextBox1");

TextBox tb = (TextBox)c;

tb.Text = "TextBox";

}

protected void dg1_EditCommand(object source, DataGridCommandEventArgs e)

{

TextBox tb = (TextBox)e.Item.FindControl("TextBox1");

this.Label1.Text = tb.Text.ToString();

}

如果是在DataGrid的页眉和页脚:

((TextBox)this.dg1.Controls[0].Controls[0].FindControl("TextBoxH")).Text = "Head";

((TextBox)this.dg1.Controls[0].Controls[this.dg1.Controls[0].Controls.Count -1].FindControl("TextBoxF")).Text = "Footer";

TextBox1在Repeater中

<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1" OnItemCommand="Repeater1_ItemCommand">

<ItemTemplate>

<asp:TextBox ID="TextBox1" runat="server" Text=""></asp:TextBox><%#DataBinder.Eval(Container.DataItem,"ProductName")%>

<asp:Button ID="btn"OnClick="btn_click" runat="server" Text="dddd" /><br />

</ItemTemplate>

</asp:Repeater>

通过按钮来获得TextBox1:

protected void btn_click(object sender, EventArgs e)

{

//获得按钮

Button btn = (Button)sender;

TextBox tb = (TextBox)btn.Parent.FindControl("TextBox1");

tb.Text = "Text";

}

或者

foreach (RepeaterItem item in this.Repeater1.Items)

{

((TextBox)item.FindControl("TextBox1")).Text = "Text2";

}

自定义控件里的TextBox1

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="WebUserControl.ascx.cs" Inherits="WebUserControl" %>

<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

引用<uc1:WebUserControl ID="WebUserControl1" runat="server" />

获取TextBox1:

((TextBox)this.WebUserControl1.FindControl("TextBox1")).Text = "userc";

模板页访问页面TextBox1

//模板页的TextBox1

TextBox tbM = (TextBox)this.FindControl("TextBox1");

//页面中的TextBox1

TextBox tbC = (TextBox)this.FindControl("ContentPlaceHolder1").FindControl("TextBox1");

tbC.Text = tbM.Text;

页面使用模板页的TextBox1

//模板页的TextBox1

TextBox tbM = (TextBox)Master.FindControl("TextBox1");

//本页面的TextBox1

//错误的方法:TextBox tbC = (TextBox)this.FindControl("TextBox1");

TextBox tbC = (TextBox)Master.FindControl("ContentPlaceHolder1").FindControl("TextBox1");

tbM.Text = tbC.Text.ToString();

时间: 2024-10-21 05:22:03

FindControl的使用方法的相关文章

C#中FindByValue、FindControl函数的用法详解

一.C#中FindByValue函数的用法:ListItem item = DropDownList1.Items.FindByValue(theme);根据指定的值("theme")获取 DropDownList 中对应的项.二.FindControl的使用方法:Control.FindControl (String):在当前的命名容器中搜索带指定 id 参数的服务器控件.(有点类似javascript中的getElementById(string))简单的例子:<form i

FindControl的详细介绍

FindControl 方法和Javascript 中的 getElementById(string) 非常相似. FindControl的使用方法 Control.FindControl (String):在当前的命名容器中搜索带指定 id 参数的服务器控件. Eg: <form id="form1" runat="server"> <div> <asp:TextBox ID="TextBox1" runat=&q

母板页 难点---数据交换

1 页面传值到 母板页(代码在页面端)法一.findcontrol()方法//把文本框中的值取出来string s = textBox1.text;// 将取到的值送到母板页中去MP master= this.Master as MP; // 找到套用的母板页//在找到的母板页中通过findcontrol 找到要操作的控件textBox text = master.findcontrol("textBao1") as textBox; text.text = s; 法二.在母板页中写好

asp.net 母版页使用详解--转

http://www.cnblogs.com/_zjl/archive/2011/06/12/2078992.html 母版页是VS2005中新引入的一个概念,它很好地实现界面设计的模块化,并且实现实现了代码的重用.它就像婚纱影楼中的婚纱模板,同一个婚纱模板可以给不同的新人用,只要把他们的照片贴在已有的婚纱模板就可以形成一张漂亮的婚纱照片,这样可以大大简化婚纱艺术照的设计复杂度.这里的母版页就像婚纱模板,而内容页面就像两位新人的照片.在VS2003中没有母版页,要实现这种设计重用的效果,我们只能

asp.net 母版页使用详解

母版页是VS2005中新引入的一个概念,它很好地实现界面设计的模块化,并且实现实现了代码的重用.它就像婚纱影楼中的婚纱模板,同一个婚纱模板可以给不同的新人用,只要把他们的照片贴在已有的婚纱模板就可以形成一张漂亮的婚纱照片,这样可以大大简化婚纱艺术照的设计复杂度.这里的母版页就像婚纱模板,而内容页面就像两位新人的照片.在VS2003中没有母版页,要实现这种设计重用的效果,我们只能用“用户控件”来实现,但用户控件没有一种可视化的组合外观,使用起来不太方便. 母版页(扩展名是.master)它的使用跟

webform用户控件

一,用户控件与页面的区别 1.扩展名:用户控件——.ascx  页面——.aspx 2.内容:页面有完整的HTML标记,用户控件没有 3.声明指示符:页面<%@ Page ...%>  用户控件<%@ Control ...%> 4.类的派生:页面派生自Page,用户控件派生自UserControl 5.页面可以独立运行,用户控件不能,它只能放在页面中才能运行 二,用户控件的好处 1.最大限度的实现代码重用,省去重复写代码的麻烦 2.团队合作时可以实现分工开发,节省时间 3.结构良

Asp.Net 之 MasterPage

母版页是VS2005中新引入的一个概念,它很好地实现界面设计的模块化,并且实现实现了代码的重用.它就像婚纱影楼中的婚纱模板,同一个婚纱模板可以给不同的新人用,只要把他们的照片贴在已有的婚纱模板就可以形成一张漂亮的婚纱照片,这样可以大大简化婚纱艺术照的设计复杂度.这里的母版页就像婚纱模板,而内容页面就像两位新人的照片. 在VS2003中没有母版页,要实现这种设计重用的效果,我们只能用“用户控件”来实现,但用户控件没有一种可视化的组合外观,使用起来不太方便. 母版页(扩展名是.master) 它的使

Asp.Net母版页的相关知识

来自森大科技官方博客   http://www.cnsendblog.com/index.php/?p=94 母版页的使用与普通页面类似,可以在其中放置文件或者图形.任何的HTML控件和Web控件,后置代码等.母版页的扩展名以.master结尾,不能被浏览器直接查看.母版页必须在被其他页面使用后才能进行显示. 它的使用跟普通的页面一样,可以可视化的设计,也可以编写后置代码.与普通页面不一样的是,它可以包含ContentPlaceHolder控件,ContentPlaceHolder控件就是可以显

关于在gridview中有dorpdownlist的情况下使用自带编辑模板的方法

今天记录一下在gridview中,如果有dropdownlist的情况下使用gridview自带编辑模式的方法. 好吧,今天的这个问题有点绕,详细解释一下目的. 因为gridview中的某些列的数据是从basedata里面带出来的,在编辑gridview的时候,user是想手动选择列值,而不是手动输入(输入不对的话,系统会报错),以上是背景. OK,想了想,在gridview中可以这样实现这个功能,用gridview自带的编辑模板,数据呈现用label绑定,数据编辑的时候用dropdownlis