我正在尝试访问某个物业,
const divList = [];
listElements.forEach(
function(currentNode, currentIndex, listObj) {
if (currentNode instanceof HTMLDivElement) {
divList.push(currentNode);
}
}
);
,它位于另一个UserControl MyControl2.ascx.cs的Usercontrol MyControl1.ascx.cs中。它们都位于一个aspx页面中,例如MyPage.aspx。我该如何实现?我尝试使用FindControl方法,但无法访问该属性。有人可以帮忙吗。预先感谢。