如果您想將真正長的代碼行分解爲更具可讀性的格式,那麼aspx頁的語法如何?asp.net將代碼拆分爲aspx頁面上的單獨行
例子:
<asp:Label runat="server" ID="lblTest" CommandName="Sort" CommandArgument="Efficiency" ForeColor="White" Text="<img src='images/bluecell.png' /> = 66 - 100 % <br><img src='images/greencell.png' /> = 33 - 66 % <br> <img src='images/ambercell.png' /> = 0 - 33%"> </asp:Label>
成類似:
<asp:Label runat="server" ID="lblTest" CommandName="Sort" CommandArgument="Efficiency"
ForeColor="White" Text="<img src='images/bluecell.png' /> = 66 - 100 % <br><img
src='images/greencell.png' /> = 33 - 66 % <br> <img src='images/ambercell.png' /> = 0 - 33%">
</asp:Label>
或者是不可能打破一個單獨的屬性值?
您的標記,因爲它是現在,格式不正確。 ''。你的意思是關閉它內聯'/>'?你爲什麼? IIRC,'Text'屬性可以是標籤的內部HTML。 '文本內容'... –
那不是我正在使用的實際代碼,我只是以實例快速鍵入它。我知道如果能像你說的那樣使用,可以分解出來,但是能分解2行或更多的屬性值嗎?在屬性=「此部分在這裏」之後的部分如同 – user1468537