views:

28

answers:

1

I can't find it in the toolbox anywhere. What control do I have available that is similar to a Windows Forms combo box?

+1  A: 

MSDN has a decent page describing the various helpers included out of the box: RenderingForm in ASP.NET MVC Using HTML Helpers. Probably the closest to what you are looking for would be the DropDownList, whcich renders the html <select> tag.

Dave Cluderay