How to create dropdown list in mvc please send me an example
Thank you
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
abhi lashPosted Sep 24, 2015, 8:10 AM
Francis SusaimichaelPosted Sep 24, 2015, 7:28 AM
abhi lashPosted Sep 24, 2015, 7:18 AM
Munesh SharmaPosted Sep 24, 2015, 5:49 AM
Francis SusaimichaelPosted Sep 24, 2015, 5:40 AM
List
items.Add(new SelectListItem { Text = "MyId1", Value = "MyId1", Selected = true });
items.Add(new SelectListItem { Text = "MyId2", Value = "MyId2" });
}
Supreeth JPosted Sep 24, 2015, 5:32 AM