在foreach ASP MVC中使用关键字

时间:2015-02-26 00:04:58

标签: asp.net asp.net-mvc razor html-helper

在我的视图中,我需要在每次迭代时使用一个表单,但是如果我将@using放在foreach中,它就无效了,

@foreach (var item in list)
{
    <tr>
        <td>@Html.DisplayName(item.name)</td>

        @using(Html.BeginForm("Index", "Home", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
        {
        <td>@Html.TextBoxFor(model=> model.quantity, new { @class = "form-control" })</td>

        <td>@Html.DropDownList("idid", (IEnumerable<SelectListItem>)ViewData["list"], "Select ...", new { @class = "form-control" })</td>
        <td>@Html.DisplayFor(model=> model.id, new { Value = item.id })</td>
        <td><input type="submit" class="btn btn-default" value="Send" /></td>


        }
    </tr>
}

1 个答案:

答案 0 :(得分:2)

您的HTML格式不正确,我怀疑这是您收到错误的原因。创建表单元素时,它将包含<td>个元素,而不是完整的表。生成时,它将如下所示。

<table>
    <tr>
        <td></td>
        <form>
            <td></td>
            <td></td>
            <td></td>
        </form>
    </tr>
</table>

您必须将表单放在<td>元素内或<table>元素之外,才能生成有效的HTML。

<form>
    <table>
        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
        </tr>
    </table>
</form>

或者

<table>
    <tr>
        <td><form><!-- input and other html elements here --></form></td>
        <td><form><!-- input and other html elements here --></form></td>
        <td><form><!-- input and other html elements here --></form></td>
        <td><form><!-- input and other html elements here --></form></td>
    </tr>
</table>