Tag Archives: MVC

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 »

JSON Open or Save Issue on Internet Explorer

Have your Internet Explorer gave you a ‘JSON’ is undefined error? Have you ever encountered this Open or Save Issue on Internet Explorer when your trying to return a JSON Result?  Then your not alone, I had the similar issue I faced just recently where everything work in other browsers except for Internet Explorer. At… 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 »