About Brent

This author has not yet filled in any details.
So far Brent has created 78 blog entries.

July 24, 2012

MVC Controller Best Practices

By |2018-06-27T17:48:14+00:00July 24th, 2012|Categories: ASP.NET, MVC|

Here are a few basic best practice guidelines to keep in mind when writing your controllers using the MVC pattern with ASP.NET MVC. Keep controllers "skinny, keep action methods small Your controller actions should be kept as small as possible, with business logic living in your models.  "Fat Model, Skinny Controller" is the motto. Here is [...]

Google XML Sitemaps WordPress Plugin – There was a problem writing your sitemap file. Make sure the file exists and is writable. – Solved

By |2012-07-04T16:40:48+00:00July 4th, 2012|Categories: Wordpress|Tags: , |

I use http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/ for generating my XML sitemaps for search engines. This is an older plugin but is still in use by many. For quite some time I have been getting an error "There was a problem writing your sitemap file. Make sure the file exists and is writable" This error has been bugging me, and [...]

June 26, 2012

MVC Model Binding Not Working with Fields

By |2012-06-26T21:22:52+00:00June 26th, 2012|Categories: ASP.NET, MVC|Tags: , |

This will be a very quick/simple post. Maybe this is very clear to most people when they start out developing with ASP.NET MVC but it was not right away with me... When you are using 2-way model binding in MVC to bind your model to your view and back again, you MUST use properties with getters/setters, [...]

SEO Tips – Adwords Keyword Tool

By |2018-06-27T17:47:27+00:00June 21st, 2012|Categories: SEO|Tags: , |

        Last post we talked about making good use of html headers in your content to help boost SEO results. This time I want to talk about using the Google Adwords keyword tool. This probably should have been my very first post in the series. Afterall, if you aren't targeting the correct keywords for your [...]

May 26, 2012

SEO Tips – Page Descriptions

By |2018-06-27T17:47:27+00:00May 9th, 2012|Categories: SEO|Tags: , |

        Last post we talked about page titles. This post we will be touching on page descriptions. Page Descriptions Page descriptions are also important to SEO, but not necessarily as much as page titles. They do bear mentioning though. Your description gives readers a general idea of what your page will be about, [...]

February 26, 2012

Spring.net “around advice” interceptor logging using DefaultAdvisorAutoProxyCreator

By |2012-02-26T21:32:42+00:00February 26th, 2012|Categories: ASP.NET|Tags: , , |

I wanted to be able to wrap all method calls from any of our spring.net created objects for the purpose of some sort of performance logging. This could have been done at least two different ways Using a Spring.Aop.Framework.AutoProxy.ObjectNameAutoProxyCreator and specifying a wildcard expression to wrap advice around certain objects that match the expression. (all services only, all [...]

2011 Browser Statistics

By |2018-06-27T17:47:26+00:00February 20th, 2012|Categories: General Technology, Web Design|Tags: , |

        I was curious about what the breakdown of browser statistics looked like in 2011, and I was pleasantly surprised by what I found. These statistics are provided by W3Schools and can be found at: http://www.w3schools.com/browsers/browsers_stats.asp. 2011 Internet Explorer Firefox Chrome Safari Opera December 20.2 % 37.7 % 34.6 % 4.2 % 2.5 % November [...]

A quick review of nopCommerce, a great ecommerce shopping cart built using MVC

By |2018-06-27T17:47:26+00:00February 12th, 2012|Categories: ASP.NET, MVC|Tags: , , |

  I recently had a client who wanted to setup an online store, they had several hundred products to list, and wanted to have something up as quickly as possible. I had read quite a lot of good reviews about nopCommerce, an open source .NET shopping cart product built with MVC. I decided to give it [...]

Go to Top