ASP.Net MVC Futures Refresh For MVC2 -


with release of mvc2, noteworthy features included in refresh of mvc futures library?

there 2 versions of mvc futures sit alongside mvc 2 rtm. 1 version targets .net 3.5; other targets .net 4. (the .net 4 version not superset of .net 3.5 version; must include both of them in application if want entire range of functionality.) download http://aspnet.codeplex.com/releases/view/41742.

a non-exhaustive feature list (.net 3.5+):

  • a diagnostics page can diagnose runtime , assembly loading errors (see documentation).

  • a new, more powerful model binding , validation system. detailed documentation , tutorial available @ above link.

  • improved support building restful services (see microsoft.web.mvc.resources namespace).

  • strongly-typed actionlink<t>().

  • a slew of other filters , helpers, such html.serialize() (see blog post), html.script(), etc.

  • a slew of other value providers, such jsonvalueproviderfactory.

  • the ability turn off session state individual controllers increase parallelism in site (see documentation).

the version of mvc futures targets asp.net 4 additionally includes:

  • the ability have partial output caching, e.g. caching result of renderaction() separately rest of page.

  • dynamicviewpage allows use real dynamic objects in viewpage, more full-featured default viewpage<dynamic>.

  • the ability use dataannotations 4 attributes.

  • remote validation, iclientvalidatable (the ability of validation attribute supply own client validation info), , ability custom non-dataannotations attributes contribute modelmetadata information.


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -