我在c#aspx页面中有以下代码:
<ItemTemplate>
<a <% if(((Dictionary<string, string>)Container.DataItem)["type"]==Session["type"]){%> class="active"<%}%>
此代码导致以下错误。
Compiler Error Message: CS0117: 'System.ComponentModel.Container' does not contain a definition for 'DataItem'
为什么这样,我如何制作使用Container.DataItem
的条件语句? Container.DataItem
在<%# %>
内使用时效果很好,但if
语句放在<%# %>
内会导致以下错误:
Compiler Error Message: CS1518: Expected class, delegate, enum, interface, or struct
答案 0 :(得分:3)
你可以有这样的东西
<ItemTemplate>
<%# ((Dictionary<string, string>)Container.DataItem)["type"].Equals(Session["type"]) ?
"<a class='active'>mylink</a>" :
"<a>mylink</a>" %>
或
<ItemTemplate>
<a class='<%# ((Dictionary<string, string>)Container.DataItem)["type"].Equals(Session["type"]) ?
"active" : string.Empty" %>'>my link </a>
修改 添加了等于解决方案