Tag Archives: MVC

How to use ApiControllers with your current MVC Application

Like me you might be starting to integrate AngularJS or any other JS Framework in your MVC Application then later on finding out you are converting a lot of your results to handle this calls.  While it works with the MVC Controllers you always have to serialize your result to JSON Format and enabling client… Read More »

What’s with this ‘/_vti_bin/owssvr.dll’ and ‘/MSOffice/cltreq.asp’ errors on my MVC Application

You might be getting the following errors below on your MVC Application and your wondering where does this come from? You looked everywhere in your solution and you’re definite you don’t have the following pages that the error is referring to. And now you are getting crazy and is looking for answers on how to… Read More »

Unobtrusive Client and Server Side Not Equal To Validation in MVC using Custom Data Annotations

Yesterday we discussed about Unobtrusive Client and Server Side Age Validation now let’s do a not equal to validator which is basically the opposite of the Compare validator.  So where can this be useful? If you don’t want two items to have the same value then this is your solution.  Lets say you don’t want… Read More »

Enabling ASP.Net MVC client validation for Kendo UI components

You might have stumbled upon this page because you are getting crazy in trying out all sort of solutions to make the client validation work for your Kendo components such as DropDownListFor, DatePickerFor, ComboBoxFor, etc. You might have tried several suggestions you saw online like setting the validator defaults in your JavaScript like the samples below

Using Dependency Injection on OpenAccess ORM MVC Project

You might be starting a new project using OpenAccess ORM and wondering how to implement dependency injection to prevent hard-coded dependencies and enable the possibility of changing them at run-time.  Well it’s not that hard specially with the new Dependency Injection Framework available today where all you need to do is get them on nuget,… Read More »