Where can I find the ASP.Net MVC2 combo box?
I can't find it in the toolbox anywhere. What control do I have available that is similar to a Windows Forms combo box开发者_C百科?
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.
精彩评论