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.
我有一个LinkButton点击时我想在OnPreRender方法内执行操作。
LinkButton
OnPreRender
那么我怎么知道它是否LinkButton被点击了呢?
说我的 LinkButton 的名字是lnkbtn1.
lnkbtn1
提前致谢。
巴赫。
当您到达 PreRender 时,您的按钮的 Clicked 事件已经被调用,因此可以使用 Click 事件在您的控件上设置一个私有布尔属性以指示按钮是否被单击,然后您可以稍后在 PreRender 中检查该属性。