-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got a base controller that takes a couple generics, nothing overly fancy.
public class SystemBaseController<TForm, TFormViewModel> : Controller
where TForm : class, IForm
where TFormViewModel : class, IViewModel
ok, no big deal. I have a method "CompleteForm" that takes in the…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
To get the latest build of T4MVC: Go to MvcContrib T4MVC page on CodePlex A few weeks back, we announced (mostly on Twitter) that T4MVC was moving into the MvcContrib Codeplex project. I didn’t say much about it at the time because there Read More......(read more)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I was using WindsorControllerFactory from mvccontrib.castle lib until now, after i migrated to mvc 2 it doesn't work anymore, I've downloaded the latest mvccontrib release and no factories in there
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
ASP.NET MVC 3 includes a new unobtrusive validation strategy that utilizes HTML5 data-* attributes to decorate form elements. Using a combination of jQuery validation and an unobtrusive validation adapter script that comes with MVC 3, those attributes are then turned into client side validation…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'd like to improve my page by combining and minifying javascript and CSS files. Since MVCContrib already contains a project called IncludeHandling, I took a look at that which unfortunately left me with unanswered questions:
There is quite a set of interfaces and objects involved in the process…
>>> More