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.
我在page_Init事件中创建了一个动态表。如何在单击事件处理程序中访问该表?目前它在点击事件处理程序中不可访问。实际上,我需要遍历动态创建的表以获取已添加到该表中的其他动态控件。
page_Init
在您的页面中声明私有局部变量,例如_table As....
_table As...
然后,在 Page_Init 中,使用这些变量_table = New...。
_table = New...
您可以_table稍后在页面生命周期中使用。
_table