码迷,mamicode.com
首页 > 其他好文 > 详细

怎对于Foreach 不能添加IF的问题

时间:2014-05-31 05:11:24      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

我不们直接在Foreach 里面直接添加IF,这样会报错,这个前提是子视图,其他的我没有试验过。像这样:

1
2
3
4
5
6
7
8
9
10
11
@foreach (Gift.Modules.Model.Entitys.XT_CZ item in ViewData["ZTCZ"] as IList<Gift.Modules.Model.Entitys.XT_CZ>)
{
    string htmlfaction = @item.Action + "()";
    if (true)
    {
         @saveorcancel = true;
    }
    <a href="javascript:void(0)" id="@item.Action" onclick="@htmlfaction" class="easyui-linkbutton" data-options="iconCls:‘@item.IconCls‘" style="width: 80px; margin-right: 5px; margin: 5px;">
        @item.CZMC
    </a>
}

 应该改成这样:

1
2
3
4
5
6
7
8
9
10
11
12
13
@foreach (Gift.Modules.Model.Entitys.XT_CZ item in ViewData["ZTCZ"] as IList<Gift.Modules.Model.Entitys.XT_CZ>)
{
    string htmlfaction = @item.Action + "()";
    <text>
    @if (true)
    {
         saveorcancel = true;
    }
    </text>
    <a href="javascript:void(0)" id="@item.Action" onclick="@htmlfaction" class="easyui-linkbutton" data-options="iconCls:‘@item.IconCls‘" style="width: 80px; margin-right: 5px; margin: 5px;">
        @item.CZMC
    </a>
}

 这样就可以正常运行。

怎对于Foreach 不能添加IF的问题,布布扣,bubuko.com

怎对于Foreach 不能添加IF的问题

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/armyant/p/3761631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!