Scheduling A Task In A Web Application On A Windows Server
When writting web applications, there may be times when you would like to perform some task automatically at the same time or every X number of hours. Web applications only execute their code when a...
View ArticleConfiguring IIS 6 and ASP.NET MVC
By default, IIS 6 does not work with ASP.NET MVC and needs to be configured to use wild-card mapping to get MVC’s routing and clean URLs to work correctly. Unfortunately, IIS 6 does take a performance...
View ArticleASP.NET MVC – Organizing your solution
Keeping your project files organized will help you navigate through your projects and help you find what you are looking for to make changes faster. Here are some tips that I use to help keep my...
View ArticleSetting up Structure Map
StructureMap If you haven’t heard about dependency injection, it is something you should definitely look into. It can save tons of time when coding. StructureMap is a dependency injection framework...
View ArticleUsing the Visual Studio 2010 Remote Debugger with ASP.NET MVC
Visual Studio Remote Debugging Monitor To use the remote debugger with ASP.NET MVC applications, you first must run the Visual Studio Remote Debugger Monitor on the server or remote computer. There are...
View ArticleUnknown Exceptions
When I build an ASP.NET MVC application, I like to add my own error handler and serve up some nicer error messages to the users of the systems. I allow for unknown exceptions to be emailed to me along...
View ArticleCricket.Net: Part 1 – Setting up the initial project
Summary Cricket.Net is a new open source project that I’ve started on Codeplex. It will be a web application that will be used for tracking software bugs. Cricket.Net will be written in C# using HTML5,...
View ArticleCricket.Net: Part 2 – Design Discussion
Summary Cricket.Net is a new open source project that I’ve started on Codeplex. It will be a web application that will be used for tracking software bugs. Cricket.Net will be written in C# using HTML5,...
View ArticleCricket.Net: Part 3 – Unit Testing
Summary Cricket.Net is a new open source project that I’ve started on Codeplex. It will be a web application that will be used for tracking software bugs. Cricket.Net will be written in C# using HTML5,...
View ArticleUpdating to ASP.NET MVC 5 via NuGet
It appears the NuGet package for MVC 5 causes the web application to throw errors after updating. After updating, running the web application in debug mode causes the following error to be displayed:...
View Article