Introducing Our Honeymoon Registry

I’m pleased to announce the launch of my latest ASP.NET project, Our Honeymoon Registry.

Our Honeymoon Registry is an online wedding gift registry service that allows couples to specify items from their upcoming honeymoon as gifts in a registry for their family and friends to choose in lieu of traditional wedding presents.

Popular, Technology Read more

Extending the asp:image control to set a maximum width

Overview Let’s say that you have an asp:image control that displays user uploaded images from a database: <asp:Image ID=”Image1″ runat=”server” ImageUrl=”me.png” /> A common request in this scenario is how to set a maximum width for this image. While you can certainly set the Width property, this scales up images smaller than the width that [...]

ASP.NET Read more

Overview of C# nullable types

Asp.net 2.0 introduced nullable types that allow you to determine whether a variable has been assigned a value or not and not cause an exception if the variable is null. A nullable type simply allows a variable to be null in addition to its normal range of values.

ASP.NET Read more