The ASP.NET membership adds an application to your ASP.NET website so that you may be able to manage your user accounts well. It does this by adding some tables in your existing sql database. Try incorporating this into your website and you'll see the magic.

 
The regex for email addresses in the MSDN website sucks a bit, it may work in code-behind but not in the .aspx file in which the server script for RegularExpressionValidator is found. Insert this string into the ValidationExpression property of your RegularExpressionValidator: (works like a charm)

"^[a-zA-Z0-9]+([\._]?[a-zA-Z0-9]+)*@[a-zA-Z0-9]+([\.-]?[a-zA-Z]+)?(\.[a-zA-Z]{2,3})+$"

I found this piece of code in this site: (it is found near the bottom of the page)
Thanks so much "djrulz"
 
By the way, this is in .NET. I didn't like the usual "color dialog" tool of .NET, so I searched for a better one, and I found two: (both tools are available in C# and VB)
Picture
Color Picker #1
I developed an application and I integrated this into it, by adding it as a reference. The EULA of this color picker application allows developers to do it. Feel free to post questions and comments here. :D

Picture
Color Picker #2
I haven't tried out this one yet, the GUI looks neat though! :D Can someone try this out please? And please give us some feedback here.

 
I was working on a website and found myself desiring to have the CreateUserWizard inside a Modal Popup Extender. But because the CreateUserWizard had to have a full postback in order for it to be able to pass the parameters back to the server, a workaround is necessary. I had to search for a solution long & hard, at last I found a solution. This works like a charm: (click the link below)
All thanks to the author of this site

By the way, it's in VB, but not to worry for C# coders. There are a lot of websites offering VB to C# conversion, any search engine would do the trick.