public void SignIn(string userName, bool createPersistentCookie)
 {
     if (String.IsNullOrEmpty(userName))
     {
         throw new ArgumentException("Value cannot be null or empty.", "userName");
     }
     FormsAuthentication.SetAuthCookie(userName, createPersistentCookie);
     UserContext.ClearUnused();//Очищаем повисший контекст пользователей
 }