Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
In my view some text boxes and multiple check boxes are there so i have to insert multiple selected check boxes values stored into database and retrieve those for update..I have searched lot of sites but no one give perfect solution so please help me. explain briefly flow from view to model and database for that.
Posted

1 solution

Hi you can use this code:-

In view:-

@using (Html.BeginForm("Index","Home"))
{
foreach(var items in model)
{
@Html.CheckBox("category" + item.Id, true)
}

}

And now in controller:-

public ActionResult Index(FormCollection collection)
{
foreach (var key in collection.Keys)
{
if (key.ToString().StartsWith("category"))
{
int itemId= int.Parse(key.ToString().Replace("category", ""));

// sometime key return "on" and "off" instread of "true" and "false"
if (collection[key.ToString()].Contains("true"))
{

//CheckBox is checked
//Do something here with ItemId
}
else
{
//checkBox not checked
}
}
}
return RedirectToAction("ManageArticleCategory");
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900