this is weird. I see references out there for @Html.Button() but when I type that Intellisense doesn't find such a helper... there's dropdownlist, hidden, editors, et cetera, but no button!
what's up with that?
|
this is weird. I see references out there for @Html.Button() but when I type that Intellisense doesn't find such a helper... there's dropdownlist, hidden, editors, et cetera, but no button! what's up with that? |
|||||
|
|
|||||||||||||||||
|
|
Although this was answered already, based on the comments I see that there is a common misconception about how ASP.NET MVC is designed and why there is no ASP.NET MVC is as lean as possible. It only provides the required functionality. You don't need an out of box Learning MVC is much easier than regular ASP.NET WebForms because the amount of design elements, object and method names which you need to learn is very small. I think that's the right approach and I think that's what makes MVC stand out. |
|||||
|
|
There is no button helper as of mvc preview 3 (not mvc3) it was mentioned a bunch in the past for example: http://blog.wekeroad.com/blog/aspnet-mvc-preview-using-the-mvc-ui-helpers/ however rolling your own is trivial - I have a basis for it somewhere around here I'll have to dig it up, but essentially just create a new Html.ButtonFor and copy the source code from Html.LabelFor and change the output to create an input type="button" tag. |
|||
|
|
|
Razor does not appear to have a "Button" HTML helper. You're likely finding references to a custom-built HTML helper extension. See here: http://www.asp.net/mvc/tutorials/creating-custom-html-helpers-cs |
|||||||||||||||||||
|