0

为什么显示以下代码

">文字

<asp:Label ID="idlabel" runat="server" style='display:<% Eval(mystring.ToLower().Contains("search")) ? "none;" : "block;" %>' ClientIDMode="Static">Text</asp:label> 
4

1 回答 1

0

尝试这个:

<asp:Label ID="idlabel" runat="server" style='<%# "display: " + Eval(mystring.ToLower().Contains("search") ? "none;" : "block;"  ) %>' ClientIDMode="Static">Text</asp:Label>
于 2013-11-14T18:43:08.103 回答