1

对于从母版页继承的页面,我无法找到有关页面加载事件的控件。这是我的代码-

Image img =FindControl("ourPimg0") as Image;

任何建议都非常感谢。

4

2 回答 2

1

如果您试图在母版页中找到控件,则应该 this.Master.FindControl("controlName")

其他情况是您在母版页内并希望在页面内找到一个控件,因此您应该ContentPlaceHolder1.FindControl("controlName")

另请检查:

于 2013-06-29T23:30:35.480 回答
0

在检查子页面中的控件时使用下面的代码

ContentPlaceHolder1.FindControl("controlName") 。它列出了该特定字段的控件。

于 2017-05-19T10:29:20.370 回答