How To Add jQuery Intellisense To Visual Studio
This is going to be a short post because it’s very simple to do. Have you ever been coding some jQuery and wish it came with some intellisense so you know what the signature of the method is supposed...
View ArticleCreating Your First Windows 8 Modern UI / Metro App
Creating Your First Windows 8 Modern UI / Metro App Hey everybody, in this post I will talk about how to create your first Windows 8 Modern UI / Metro application for Windows 8. Here are a few things...
View ArticleHow to use AJAX on a DropDownList changed event to dynamically modify a...
How to use AJAX on a DropDownList changed event to dynamically modify a partial view on a page My main page has a DropDownList (DropDownListFor) and a partial view which ONLY contains a list of...
View ArticleASP.NET MVC & SSRS (for displaying SSRS reports in my app)
ASP.NET MVC & SSRS (for displaying SSRS reports in my app) This is my first time writing an ASP.NET MVC web app, and it’s going good. I have no problems there. What I don’t have any experience in...
View ArticlePassing a ViewModel into my Controller’s Action Methods
Passing a ViewModel into my Controller’s Action Methods The question that gets commonly asked is “would there ever be a time when I would/should pass a ViewModel into one of my Controller’s Action...
View ArticleUsing LINQ to Excel – Easy Examples, Easy to Follow
Using LINQ to Excel - Easy Examples, Easy to Follow I just wanted to demonstrate how easy and efficient using LINQ to Excel is, when compared to the old fashioned OLEDB way of querying data from a...
View ArticleASP.NET MVC4 – Prevent The Same User ID From Logging In From Multiple Devices
ASP.NET MVC4 – Prevent The Same User ID From Logging In From Multiple Devices The first thing that comes to my mind is Spotify. The Spotify app will not allow the same user ID to log in from multiple...
View ArticleHow To Use Fiddler to Debug HTTP POST Requests In Your C# Code
How To Use Fiddler to Debug HTTP POST Requests In Your C# Code Sometimes we need a way to be able to emulate an HTTP request. An example of where this might be used is in the example of a client...
View ArticleCalling an ASP.NET MVC4 WebAPI From Your Front End Presentation Layer (MVC)
WebAPI is a great, new way of accessing a data source. It’s similar to a web service in that is acts as a middle tier to communicate with the database. WebAPI is RESTful, meaning it doesn’t contain a...
View ArticleWeb API Methods (PUT, DELETE, POST, etc.) Result In An HTTP 405 Method Not...
My particular solution to this was to add the following to my web.config. There’s this thing called WebDAV. I’m not sure what it is, but apparently if you have it in your IIS, then that will sometimes...
View Article