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.
我有一个用 MS Studio VB 2008 编写的网站。在处理按钮的 Click 事件的子例程开始时,我禁用了该按钮,但它不起作用。它仅在子例程运行后禁用。
任何帮助,将不胜感激。谢谢!
这可能是因为表单需要回发。将 autopostback 属性设置为 true,或者这可以使用 javascript 动态处理。
Button1.Enabled = false;