hi,
the more i dig into MVC the more i love it and think how was I working with Web Forms :)
but somethings are really confusing like in in Web forms if i wanted to encapsulate a controls, let us say a Combo Box, then i would create a user control and add this Combo Box to it and declare Properties, then i can drop it on any page and if i change the user control the change applies to all instances in the site, pretty easy in web forms.
now in MVC i have learned that you can create Extra Helpers by Extension Methods and it is really cool, but my aim is that i want it to be Ajaxified.
here is what i want:
- i want it to emulate Web Forms like Text Property, Selected Value, etc...
- i will be using jquery for cool effects like highlight an Item on mouse hover, so i want a way to include the scripting with this HTML Helper so i wont have to write it on a View or master page for each Combo Box I add, in other words like for Example Telerik Controls or any Web Forms Server Control.
another Question is are HTML Helpers rendered on Server ? or they are pure HTML and there is no Server Processing like Server Controls ?
Note: i know that MVC already has a list HTML Helper, but i brought this as an example.
thanks in advanced.