ASP.NET - Checkbox Post

时间:2017-03-30 22:39:53

标签: c# asp.net

我正在尝试将已发布的复选框解析为csharp中的数组变量。例如:

 <input type="checkbox" name="ID[]" value="1" />
 <input type="checkbox" name="ID[]" value="2" />
 <input type="checkbox" name="ID[]" value="3" />
 <input type="checkbox" name="ID[]" value="4" />

将从Request解析为类似这样的内容:

int[] IDs = new int[] { 1, 2, 3, 4 };

1 个答案:

答案 0 :(得分:0)

我在寻求什么:

string[] ids = Request.Form.GetValues("id[]");