Hi i need to show a list of data using viewbag.but i am not able to do it. Please Help me.. I tried this thing:
ICollection list = ne
//controller You can use this way public ActionResult Index() { List fundList = db.Funds.ToList(); ViewBag.Funds = fundList; return View(); } <--View ; You can use this way html--> @foreach (var item in (List)ViewBag.Funds) { @item.firtname }
@item.firtname