私は ASP.NET MVC4 を使用したプロジェクトを持っています。他のページで使用するには、ログインして、ID、名前などの現在のユーザー情報を保持する必要があります。
[HttpPost]
public ActionResult Auth(string login, string password)
{
// Customer c = null;
Customer cus = (from e in db.Customers where e.Login == login && e.Password == password select e).SingleOrDefault();
if (cus != null)
{
//String s = User.Identity.Name;
return RedirectToAction("Index");
}
else return RedirectToAction("Error");
}
セッションコードが必要なだけだと思いますので、誰か助けてください??