我想知道是否有任何方法可以做到这一点:
<asp:Label ID="lblSomething" runat="server" Visible="this.ShowLabel"/>
在后面的代码中:
public bool ShowLabel {get;set;}
我知道你们中的一些人可能会问我为什么需要它,但我发现这种方法比在后面的代码中说的更干净:
lblSomething.Visible = this.ShowLabel
我也可以在源视图中这样说:
<% if(this.ShowLabel){ %>
<asp:Label ID="lblSomething" runat="server" Text="Something"/>
<% } %>
但同样,第一个对我来说会更直观。有任何想法吗?