4

so I don't understand what I am doing wrong here. I want to populate a DropDownList inside the master page of my ASP.NET MVC 2 app.

Projects.Master

<div id="supaDiv" class="mainNav">
 <% Html.DropDownList("navigationList"); %>
</div>

MasterController.cs

namespace ProjectsPageMVC.Controllers.Abstracts
{
    public abstract class MasterController : Controller
    {
        public MasterController()
        {
          List<SelectListItem> naviList = new List<SelectListItem>();

          naviList.Add(new SelectListItem
          {
           Selected = true,
           Text = "AdvanceWeb",
           Value = "http://4168web/advanceweb/"
          });

          naviList.Add(new SelectListItem
          {
           Selected = false,
           Text = " :: AdvanceWeb Admin",
           Value = "http://4168web/advanceweb/admin/admindefault.aspx"
          });

          ViewData["navigationList"] = naviList;
        }
    }
}

The DropDownList is not even showing up in the DOM and I am at a loss as to what I am doing wrong.

ProjectsController

namespace ProjectsPageMVC.Controllers
{
    public class ProjectsController : MasterController
    {
        public ActionResult Index()
        {
            return View();
        }
    }
}

2 Answers 2

7

Change

<% Html.DropDownList("navigationList"); %>

to

 <%=Html.DropDownList("navigationList") %>
Sign up to request clarification or add additional context in comments.

4 Comments

The equals sign is the difference, though I think you also have to use the overload that includes the SelectList
As long as the data is of type SelectList, you don't need to un-box it, see Dave's answer. Personally I prefer strongly typed data over magic strings.
@Gabe This has bitten me countless times.
The equals sign indicates a literal value, the semicolon indicates a method call.
2

Change your markup:

<%= Html.DropDownList("navigationList", (SelectList)ViewData["navigationList"]); %>

2 Comments

this throws an error: Unable to cast object of type 'System.Collections.Generic.List`1[System.Web.Mvc.SelectListItem]' to type 'System.Web.Mvc.SelectList'.
Your value in the ViewData should be an IEnumerable<SelectListItem>

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.