views:

508

answers:

1

Apparently some vendors (like Telerik) are working on versions of their controls that do not rely on postback behavior to work.

As in the latest release of Asp.net MVC RC also code behind files tend to fade away for views, what would the best way for vendors to encapsulate UI rendering (control tags, html helpers) and control behavior?

Do you think that would be better for vendors to base their controls JavaScript dependency on framework like Jquery and extend that with classic Jquery plugins ?

As now we can send view data to the controllers in many ways should control vendors share some kind of convention?

+3  A: 

You might look at FluentHtml in MvcContrib discussed here.

Tim Scott