In the first post in this series, I provided a little info on the HandleError attribute in MVC 1.  In case you don’t want to flip back, the HandleError attribute can decorate a method or a class and will push your users to a generic errors view provided customErrors is “On” or “RemoteOnly”.  There’s a [...]

For my current project I needed to create some logic for users to upload an image…only problem was the image had to be of a fixed size, and therefore aspect ratio.  Enter the need for an image cropper.  You’ve seen them before on a number of sites, like linkedIn, facebook, and everywhere else.  I began [...]