Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I'm getting above mention and not able to figure out what exactly error is.
code is working fine for other but only for a single table i'm getting error.
Please help
This is controller code
ViewBag.User = new SelectList(context.Users, "UserName", "UserName");


this is View code.
@Html.DropDownList("UserName", (IEnumerabl<SelectListItem>)ViewBag.User, "Select User")



Please help
Posted

1 solution

I think that should be...
HTML
@Html.DropDownList("UserName", ViewBag.User, "Select User")
 
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