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.
我需要信息和代码。我想要实现的是,当用户单击链接或控件时,其余的控件和链接将被禁用。因此,当页面重定向时,用户不能点击任何链接或控件。
使用 div 放置控件,并在重定向时更改 div 的 CSS。如果您希望从后面的代码中执行相同的操作,请使用
<div ID="DivID" runat="server"/>
然后您可以从后面的代码中访问相同的内容。
您可以放置一个面板,并在其中放置所有控件并在重定向时禁用它:
<asp:Panel ID="Pan1" runat="server" > ... </asp:Panel >
在重定向之前禁用它:
Pan1.Enable = False