私はモデルがforeachループでIenumerable <TModel>をバインドするにはどうすればよいですか?
class AdjustmentModel
{
public int ID;
public int amount;
}
ある
foreach (var adjustment in Model)
{%>
<tr row="<%: row %>">
<td class="nonSelectable" column="0">
<div>
...I want to put a textbox here that has name="someId"
and val="someVal" but how?
</div>
</td>
}%>
...
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Collections.Generic.IEnumerable<AdjustmentModel>>" %>
そして、私が持っているビューの... MVC2ビューウィッヒが強くモデルにバインドされてい私はHtml.TextBoxFor()に渡すデリゲートを理解できません。なぜなら、モデルを渡すと、imはIenumerableを渡すので、intellisenseは動作しません。どのようにモデルを使用するのですか?