FindControl的使用
在asp.net开发中经常需要引用某个控件,这时候可以用findcontrol来帮你达成目的。
例如可以在目标页中通过PreviousPage属性访问源页面的信息,我们一般用findcontrol方法来查找源页面上的控件并读取这些控件的值。
例如可以在目标页中通过PreviousPage属性访问源页面的信息,我们一般用findcontrol方法来查找源页面上的控件并读取这些控件的值。
if(Page.PreviousPage!=null)
{
TextBox txtAge=(TextBox)Page.PreviousPage.FindControl("txtAge");
if(txtAge!=null)
{
Label1.Text=txtAge.Text;
}
}
{
TextBox txtAge=(TextBox)Page.PreviousPage.FindControl("txtAge");
if(txtAge!=null)
{
Label1.Text=txtAge.Text;
}
}