动态的给文本框赋值的方法:
string[] searchstring = model.SEARCH_STRING.Split(' ');
int searchcount = searchstring.Length;//得到长度如:2
for (int i = 1; i < searchcount; i++)//动态的给文本框赋值的方法
{
XXXXX
}
//这样的最好的地方在于 不用写太多的判断 判断有多少文本框
//下面的方法是找控件的方法:
来自:本文来自: IT知道网(http://www.itwis.com) 详细出处参考:http://www.itwis.com/html/net/net20/20101125/9631.html
asp.net母版页使用this.FindControl()方法的问题,在没有使用MasterPage之前,页面this访问到的对象就是他自己,所以使用this,FindControl也就没什么问题。
但是使用MasterPage之后,this.Control.Count=1,就只有一个。跟踪一下: this.Controls[0] {ASP.module_mp1_master} System.Web.UI.Control {ASP.module_mp1_master} .
也就是说,加入masterPage之后他的控件的顺序就变了。(以前看过一个在asp.net1.1下的MasterPage实现,也是类似的方式,重新组织控件)。这就是问题所在。
解决方法:
把原来这样的使用:
protected void AssignControls()
{
this.lblError = this.FindControl("lblError") as Label;
this.dgItemList = this.FindControl("dgItemList") as DataGrid;
}
变成这样调用:
protected void AssignControls()
{
this.lblError = this.Master.FindControl("Content").FindControl("lblError") as Label;
this.dgItemList = this.Master.FindControl("Content").FindControl("dgItemList") as DataGrid;
}
也就是说,先使用this.Master.FindControl("Content")来找到在MasterPage上相对的位置,然后再按照以前的调用方式就可以了。
或者使用这个函数
public static Control FindControlRecursive(Control Root, string Id)
{
if (Root.ID == Id)
return Root;
foreach (Control Ctl in Root.Controls)
{
Control FoundCtl = FindControlRecursive(Ctl, Id);
if (FoundCtl != null)
return FoundCtl;
}
return null;
}
本文介绍了解决ASP.NET母版页中控件定位问题的有效方法。通过使用this.Master.FindControl方法,可以准确地找到MasterPage上的控件位置,并进行相应操作。此外,还提供了一个递归查找控件的实用函数。
1805

被折叠的 条评论
为什么被折叠?



