Listbox in razor view in ASP.NET MVC

How to create a list box in razor view?

Creating ListBox is similar to DropDownList except that instead of using @Html.DropDownList, we use @Html.ListBox or @Html.ListBoxFor. Remaining all other approaches to populate items in the ListBox is same as DropDownList. 

No comments:

Post a Comment

How to register multiple implementations of the same interface in Asp.Net Core?

 Problem: I have services that are derived from the same interface. public interface IService { } public class ServiceA : IService { ...