Csharp/C Sharp/Development Class/FormsAuthentication — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 15:31, 26 мая 2010
Use FormsAuthentication
using System;
using System.Web.Security;
//MD5Test
class Class1 {
static void Main(string[] args) {
string Brian = FormsAuthentication.HashPasswordForStoringInConfigFile("MyPassword", "MD5");
Console.WriteLine(Brian);
Brian = FormsAuthentication.HashPasswordForStoringInConfigFile("MyPassword", "sha1");
Console.WriteLine(Brian);
}
}