skip to Main Content

Unable to build ASP.Net apps

I am trying to build and compile an ASP.Net solution. The solution is new. Here is how I create it: For this demonstration I avoid creating anything post-creating the project, And here are the errors that I am getting: All…

VIEW QUESTION

ASP.NET core MVC how to use dropdown list

Im trying to make dropdown list in my razor view using Viewbag but its not working, Im missing something I guess public IEnumerable<SelectListItem> GetAllEmployeeForPayroll() { return GetAll().Select(emp => new SelectListItem() { Text = emp.FullName, Value = emp.Id.ToString() }); } ViewBag.employees…

VIEW QUESTION
Back To Top
Search