不知有什麼辦法可以做到這一點:在Asp.NET控制使用變量屬性在HTML視圖
<asp:Label ID="lblSomething" runat="server" Visible="this.ShowLabel"/>
,並在後面的代碼:
public bool ShowLabel {get;set;}
我知道你們中的一些可能會問我爲什麼需要它,但我覺得這種方法比在後面的代碼中說這個更清晰:
lblSomething.Visible = this.ShowLabel
而且我也可以這麼說urce查看:
<% if(this.ShowLabel){ %>
<asp:Label ID="lblSomething" runat="server" Text="Something"/>
<% } %>
但是,再次,第一個對我來說會更直觀。有任何想法嗎?
你的情況