控制器中的Asp .Net方法获取字符串列表

时间:2013-01-10 10:49:34

标签: c# asp.net-mvc

我需要将一个字符串列表发送到asp net mvc中控制器中的方法。我怎么能这样做?

我希望我的控制器中的方法看起来像这样:

public ActionResult CutFile(string[] filenames, string target)

我可以选择将字符串数组参数更改为:

public ActionResult CutFile(IEnumerable<string> filenames, string target)

1 个答案:

答案 0 :(得分:3)

您需要以这种格式发送数据:

<input type="text" name="filenames[0]" value="A"/>
<input type="text" name="filenames[1]" value="B"/>
<input type="text" name="filenames[2]" value="C"/>

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