Blog Updated to BlogEngine.Net 1.4.5

by Bill Beckelman 20. September 2008 11:28

This morning I decided to finally update my blog to the latest version. It's one of those things that I have been meaning to do for a while but wasn't to excited about since I was a few versions behind. All in all it was pretty straight forward and things just worked. I use the default xml provider so I am not sure what database issues there might of been.

If you are looking to upgrade your own installation I would recommend taking a look at the upgrade guides by Al Nyveldt that walk you through the upgrade process for each major update.

I did have a problem with the Silverlight Slide Show Extension I put together not working but it was a quick fix. I just had to change one line of code:

Chaged:

    public SilverlightSlideShow()
    {
        Post.Serving += Post_Serving;
    }

To:

    public SilverlightSlideShow()
    {        
        Post.Serving += new EventHandler<ServingEventArgs>(Post_Serving);
    }

For an example of what the extension does check out http://beckelman.net/post/2008/05/19/Pictures-From-Manual-Antonio2c-Costa-Rica.aspx.

Comments


About Me

I live and work in Salt Lake City, Utah. My background is in aviation. I have a degree in Aeronautical Science from Embry-Riddle Aeronautical University in Prescott, AZ. I have worked as a commercial airline pilot and most recently as a technical advisor for a charter airline.