Tag: Development

Community

Custom Profiles with ASP.NET

(Jon Box) I recently built a demo for a customer that required some extra fields for each registered user. And if you know anything about ASP.NET 2.0 and going forward, you’re probably thinking that I should or did use the Profile object. And, yes, that is an option – add some field definitions to t

Community

Useful Extension Methods

(Brian Mains) Extension methods are very useful. They help extend the existing objects of .NET by attaching methods to it that it appears that it’s a part of the object, but it’s really not. Let’s look at some extension methods and how they can be useful.