在单击按钮时,我试图将样式应用于两个按钮以实质上将它们交换出来 - 将一个设置为 display:inline,另一个设置为 display:none,但是,Control.Style.Add("display","none ") 和 Control.Style.Add("display","inline") 不起作用。
但是,如果我设置了看似任何其他样式设置,它就可以工作。Control.Style.Add("background","#ff0000") 有效,Style.Remove("whatever") 和 Style.Clear()
我的功能是用户控件内的一个简单按钮:
Protected Sub SimpleButton_Click(sender As Object, e As System.EventArgs)
Me.AnotherTextBox.Text = "" ' WORKS!
Me.SimpleButton.Style.Remove("display")
Me.SimpleButton.Style.Add("display", "none")
Me.SimpleButton.Style.Add("background", "#ff0000") ' WORKS!
Me.AnotherSimpleButton.Style.Remove("display")
Me.AnotherSimpleButton.Style.Add("display", "inline")
End Sub
我的页面代码:
<asp:LinkButton CausesValidation="false" Style="padding: 0px 4px; color: GrayText; font-weight: bold;" ID="AnotherSimpleButton" runat="server" Text="Add" Enabled="false"></asp:LinkButton>
<asp:LinkButton CausesValidation="false" Style="padding: 0px 4px; color: Blue; font-weight: bold;display:none" ID="SimpleButton" runat="server" Text="Add" OnClick="SimpleButton_Click"></asp:LinkButton>
我尝试过使用和不使用上述 Style.Remove("display"),以及使用 Style.Clear() 并重建整个样式 - 仍然没有骰子。展示风格有什么特别之处吗?