public mySite GetSite(string siteID)
    {
        SiteBL _siteBL = new SiteBL();
        mySite ms      = new mySite();
        var    s       = _siteBL.GetSite(siteID);

        ms.SiteID = s.SiteAliasName;
        return(ms);
    }
Пример #2
0
 public ActionResult Login(mySite.Models.user fromuser)
 {
     if (ModelState.IsValid)
     {
         mySite.Models.connecteduser x = null;
         if (mySite.Models.user.checkcredintial(fromuser.userLogin, fromuser.userPassword)>0)
         {
             Session["userdata"] = x;
             //FormsAuthentication.SetAuthCookie(x.Num.ToString(), true);
             FormsAuthentication.SetAuthCookie("123", true);
             return RedirectToAction("index", "myprtctd");
         }
         ModelState.AddModelError("", "Invalide username or password or the combination");
     }
     return View(fromuser);
 }
Пример #3
0
        public ActionResult adduser(mySite.Models.user fromuser)
        {
            if (fromuser.userRealName == null)
                ModelState.AddModelError("userRealName", "Actual Name is Must!");

            if (ModelState.IsValid)
            {

                int nwnum = mySite.Models.user.addUser(fromuser.userLogin, fromuser.userPassword, fromuser.userRealName);
                if (nwnum > 0)
                {
                    Session["userdata"] = new mySite.Models.connecteduser(nwnum, fromuser.userRealName, "Guest");
                    FormsAuthentication.SetAuthCookie(nwnum.ToString(), true);
                    return RedirectToAction("index", "myprtctd");
                }
                else if (nwnum == 0)
                    ModelState.AddModelError("userLogin", "this login Already Exist");
                else
                    ModelState.AddModelError("", "problem during trying to reach the DB");

            }
            return View(fromuser);
        }