public static string Encrypt(string cleanstring)
{
Byte[] clearBytes = new UnicodeEncoding().GetBytes(cleanstring);
byte[] hashedBytes = ((HashAlgorithm)CryptoConfig.CreateFromName("MD5")).ComputeHash(clearBytes);
return BitConverter.ToString(hashedBytes);
}