2

我有一个包含自动生成input的类型框的视图text。当我单击“电子邮件结果”按钮时,代码会将您带到 CalculatedResults 控制器中的 EmailResults 操作。到现在为止还挺好。但是,即使我将 FormCollection 作为 EmailResults Action 中的参数,它仍然以 null 的形式出现,我不知道为什么。我需要能够从表单中捕获文本框 - 请帮助!在我下面的查看代码中,生成的文本框有点过了一半。

我的查看代码

@using (Html.BeginForm("EmailResults", "CalculatedResults", FormMethod.Post, new { data_ajax = "false" }))
        {
            <table>
                <thead>
                    <tr>
                        <td>Ingredient</td>
                        <td>Qty (gm)</td>
                    </tr>
                </thead>
                @foreach (var i in Model)
                {
                    if (Convert.ToDecimal(i.Qty) < 0)
                    {
                        <tr>
                            <td style="border: 1px solid red; color: red;">@i.Ingredient</td>
                            <td style="border: 1px solid red; color: red;">@i.Qty</td>
                        </tr>
                    }

                    else if (Convert.ToDecimal(i.Qty) == 0m)
                    {
                        continue;
                    }

                    else
                    {
                        if (i.Ingredient.Contains("Active"))
                        {
                        <tr>
                            <td>@i.Ingredient<br />
                                <input type="text" name="actives" /></td>
                            <td>@i.Qty</td>
                        </tr>
                        }
                        else
                        {
                        <tr>
                            <td>@i.Ingredient</td>
                            <td>@i.Qty</td>
                        </tr>
                        }
                    }
                }

            </table>
        }
        <div style="float: left">
            @Html.ActionLink("Email Results", "EmailResults", "CalculatedResults", new { crpk = @ViewBag.crpk }, new { data_icon = "arrow-r", data_role = "button" })
        </div>

我的控制器代码

public ViewResult EmailResults(int crpk, FormCollection collection)
{
    CapWorxQuikCapContext context = new CapWorxQuikCapContext();

    //List<string> variables = new List<string>();
    //foreach (var item in Request.Form)
    //{
    //    variables.Add(item.ToString());
    //}

    CalculatedResults cr = (from i in context.CalculatedResults where i.Pk == crpk select i).SingleOrDefault();
    Helpers.Email.EmailResults(cr);

    return View();
}

这是一个屏幕截图:

在此处输入图像描述

4

1 回答 1

4

formCollection 只会在您将表单提交给控制器时遇到。任何一个

  1. 采用<input type="submit" value="Email Results" />
  2. 将 jquery 处理程序连接到您创建的为您提交表单的 ActionLink。
于 2013-04-12T03:24:19.377 回答