I know it was silly to ask this question but I\'m not able to figure it out and I need your help guys.
First of all I am new to MVC. In my Project I am using a dropdownl
I think i spotted the problem, you need to do the following two things to resolve,
1) change the model property public IList InterviewerName to public string InterviewerName
public IList InterviewerName
public string InterviewerName
2) use ViewBag to take the selectlist values to the View.
Let me know if it helps.