博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET MVC 3 Razor Nested foreach with if statements
阅读量:5985 次
发布时间:2019-06-20

本文共 1426 字,大约阅读时间需要 4 分钟。

You need to write code this way.  @Html.Raw("")          Copy the below code and paste it into your view. it will work.             @model IEnumerable
@{ ViewBag.Title = "Products"; }

Auctions

@{
int i = 0;} @foreach (var item in Model) { if (item.DateEnd.Subtract(DateTime.Now).TotalMinutes > -5) { if (i == 0) { @Html.Raw("
") }
i = i + 1; if (i == 5) { @Html.Raw("
") i = 0; } } }
@Html.DisplayFor(modelItem => item.ShortTitle)
@Html.DisplayFor(modelItem => item.ShortDescription)
@Html.DisplayFor(modelItem => item.TimeLeft)
Current bid: @Html.DisplayFor(modelItem => item.CurrentBid)

 

转载地址:http://vyylx.baihongyu.com/

你可能感兴趣的文章
Django中使用表单
查看>>
第二次作业
查看>>
hive查询语法
查看>>
[letcode] 832 Flipping an Image
查看>>
Shell脚本
查看>>
tsar采集数据原理
查看>>
ACM HDU 1091
查看>>
Cogs 309. [USACO 3.2] 香甜的黄油 dijkstra,堆,最短路,floyd
查看>>
子窗口调用父窗口
查看>>
Ubuntu14.04 Server amd64 配置 Apache+MySQL+Django
查看>>
更新和博客搬家通知
查看>>
c语言指针
查看>>
git多账户使用
查看>>
网络IO之阻塞、非阻塞、同步、异步总结
查看>>
LeetCode-Add Digits
查看>>
immutable.js基础
查看>>
C语言程序设计第五次作业——循环结构(1)
查看>>
记录一个linux下批处理的代码
查看>>
webAPI获得链接客户端IP地址
查看>>
JavaScript:一些常用方法
查看>>