Q:

How to set the value to be selected in the dropdownlist in mvc

BY LOVE
•	Here , Model is a dynamic object and from that modal we are fetching States property which is of list type.
•	Here , employee is an employee object and from that object we are fetching state property of that particular employee.
@foreach (var S in Model.States)
            {
                if (S.StateName == employee.State)
                {
                    <option value="@S.StateName" selected="selected">@S.StateName</option>                             
                }
                else
                {
                    <option value="@S.StateName">@S.StateName</option>                             
                }
            }
0
•	Here , Model is a dynamic object and from that modal we are 
	fetching States property which is of list type.
•	Here , employee is an employee object and from that object
	we are fetching state property which is of string type.
@foreach (var S in Model.States)
            {
                if (S.StateName == employee.State)
                {
                    <option value="@S.StateName" selected="selected">@S.StateName</option>                             
                }
                else
                {
                    <option value="@S.StateName">@S.StateName</option>                             
                }
            }
0

New to Communities?

Join the community