Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于从母版页继承的页面,我无法找到有关页面加载事件的控件。这是我的代码-
Image img =FindControl("ourPimg0") as Image;
任何建议都非常感谢。
如果您试图在母版页中找到控件,则应该 this.Master.FindControl("controlName")。
其他情况是您在母版页内并希望在页面内找到一个控件,因此您应该ContentPlaceHolder1.FindControl("controlName")。
另请检查:
在检查子页面中的控件时使用下面的代码
ContentPlaceHolder1.FindControl("controlName") 。它列出了该特定字段的控件。