|
private void NRepeater_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e)
{
for (int i=0;i<this.NRepeater.Items.Count;i++)
{
NRepeater.Items[i].FindControl("zp_lx").Visible=false;
}
zp_lx是一个LABEL 控件,我想根据参数判断是否显示这个控件,但是页面显示是这样的效果,例如显示6条数据,其中第一条数据的时候,这个Label控件显示的属性没有为FALSE,而是为true,请问是何原因? |
|