Below is a screenshot of the POST request (using Firebug Net panel) I am sending to my ASP.NET MVC2 controller.

This is the controller / action method that receives the POST request:
public ActionResult Search(int[] skill, int[] discipline, int[] education, int[] marketsector){ ... }
The parameters POSTed seem to me to be in the correct form, however the action method receives four null arguments. Could you please tell me what should the method signature look like on the server side? Or a better way of posting these four integer arrays to my MVC2 controller?