Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create dymanic controls in my ASP.NET MVC Project. For example

My Model contains an IList<Product> Products. Every product in this list contains a new IList<ProductItem>. Product item has properties Text and Value.

Now i want to create one DropDownList for every Products and every dropdownlist should contains items for ProductItem.

Is this possible with HtmlHelpers?

share|improve this question

2 Answers

up vote 2 down vote accepted

This is pretty straight forward. In your controller

public ActionResult Index()
{
    List<Product> model = GetProductList();
    View(model);
}

In your View:

@model IList<Products>

... and then later on ...

@Html.DropDownListFor(item => item.Name, new SelectList(Model, "Name", "Value"))
share|improve this answer
Thanks! If i wrap it into an forech loop this will work i think. – anpe Jan 18 at 22:06
Actually you don't have to wrap that in a for loop. In case you ARE in a for (or foreach) you can use just use @Html.DropDownList(...) – Mr. Young Jan 18 at 22:08

If you don't want to use helpers, you can always do something like this:

<select>
    @foreach (var x in Model)
    {
        <option value="@x.Value">@x.Text</option>
    }
</select>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.