从ASP.NET MVC中动态添加的控件获取发布值

时间:2011-02-22 07:32:36

标签: asp.net-mvc

我有一个表单,我通过jQuery动态添加控件。在将表单发布回服务器时,我需要访问这些控件(文本框)中的值。我确信这是一个微不足道的问题,但我无法理解它。

任何帮助都会有很大帮助。

1 个答案:

答案 0 :(得分:6)

向页面添加多个控件时,请为它们指定相同的name属性,以便在操作中执行以下操作:

public ActionResult MyAction(string[] items)
{
     // items will contain all the values in the text boxes
    return View();
}

所以你的HTML就像这样

<input type="text" name="items" />
<input type="text" name="items" />
<input type="text" name="items" />
<input type="text" name="items" />
<input type="text" name="items" />
<input type="text" name="items" />