在< %%>中使用Container.DataItem和If语句

时间:2010-04-29 17:17:20

标签: c# asp.net if-statement literals

我在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

1 个答案:

答案 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>

修改 添加了等于解决方案