コード例 #1
0
 public RedirectToRouteResult LogOn(string Username, string Password)
 {
     AlexAndNikki.Models.User user = db.Users.Where(x => x.Username.ToLower() == Username.ToLower()).FirstOrDefault();
     if (user != null)
     {
         if (Password == user.Password)
         {
             FormsAuthentication.SetAuthCookie(user.Username, false);
             return(RedirectToAction("Index", "Admin"));
         }
         else
         {
             return(RedirectToAction("LogOn"));
         }
     }
     else
     {
         return(RedirectToAction("LogOn"));
     }
 }
コード例 #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
コード例 #3
0
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="username">Initial value of the Username property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 public static User CreateUser(global::System.String username, global::System.String password)
 {
     User user = new User();
     user.Username = username;
     user.Password = password;
     return user;
 }