博客
关于我
强烈建议你试试无所不能的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/

你可能感兴趣的文章
SharePoint 2013 安装.net framework 4.5已经存在更高版本的解决方案
查看>>
jsp读取properties文件
查看>>
ubuntu 11.10 initial configuration
查看>>
c#选择填空题题库
查看>>
微信公众号开发——入门
查看>>
wallet.metamask.io 网页版钱包 connecting unknown network导致页面卡住
查看>>
eclipse启动不了报错java was started but returned exit code=13
查看>>
Ubuntu安装Go语言环境
查看>>
Day 1: How to install jedi/codeintel plugin for sublime on Linux
查看>>
Ajax_ajax请求中的跨域问题---浏览器不允许ajax跨域获取服务器数据,那我们就用jsonp来实现跨域...
查看>>
jQuery学习
查看>>
43.菜单工具插件——menu
查看>>
精通Git(第2版)
查看>>
Windows Phone 8.1 后台任务
查看>>
cocos自动图集
查看>>
移动端的兼容性问题
查看>>
20160416--javaweb之国际化
查看>>
Slackware Linux or FreeBSD 配置中文环境。
查看>>
Github 上利用github pages 部署站点
查看>>
泛型依赖注入
查看>>