Im using mvc4 and im getting JSON from http://api.feedzilla.com/v1/categories.json
My model has the following code
public class catagorygroup
{
public List<CatagoryModel> catagoryModel { get; set; }
}
public class CatagoryModel
{
public int category_id { get; set; }
public string english_category_name { get; set; }
}
my view is like this
@for (int i = 0; i < Model.catagoryModel.Count; i++)
{
using (Html.BeginForm("News", "Catagory"))
{
<li> <input type="submit" name="w8-red" class="w8-button red" value= @Model.catagoryModel[i].english_category_name /> </li>
@Html.HiddenFor(model => model.catagoryModel[i].category_id);
@Html.HiddenFor(model => model.catagoryModel[i].english_category_name);
<br/><br/>
}
}
and my view is like this
If i click the First button Sports Button Im getting the "Name,Id " value like this

but if i click any button other than the first button im getting something like this [Null values]

What went wrong in my code