tags:

views:

37

answers:

1

I installed what I assumed would be the latest version (link) of ASP.NET MVC last night, but I don't have the Html.SubmitButton helper available to me.

I've seen it used in some of the video tutorials on the ASP.NET website.

+1  A: 

That Helper is probably from the 1.0 previews. They removed it by 1.0 RTW. I never used it because I started near the end of the development of MVC. You can safely use a standard <input type="submit" />.

Daniel A. White
Aye. Or I could just create my own Extension Method. Why did they remove it?
roosteronacid
I'm not sure. But if you do need them, they are in the MVC Futures library.
Daniel A. White