我需要做的DIV中這種情況下,如果對請將isDeleted顯示的第一個字==真如果div標籤內condtion
<div style="display:inline-block;float:right;padding-right:10px;margin-right:10px;">
<%# Item.IsDeleted ? 'not active':'active' %> </div>
頁只能通過這種方式認識Item
對象<%# Item.IsDeleted %>
而無法識別它以這種方式<% if(Item.IsDeleted)%>
更新: - 什麼如果我添加
<asp:HiddenField ID="hiddenisdeleted" Value=" <%# Item.IsDeleted %>" runat="server" Visible="false"/>
如何檢查Div標籤內隱藏字段的值?
不能識別''Item.IsDeleted –