关于C#MVC的登陆问题
mvc_loginEntitiesm=newmvc_loginEntities();//URL访问方式:Home/indexpublicActionResultIndex...
mvc_loginEntities m = new mvc_loginEntities();
//URL访问方式:Home/index
public ActionResult Index()
{
string UserName = Request.Form["username"];
string PassWord = Request.Form["password"];
if (UserName != "" && PassWord != "")
{
List<user> list = (from d in m.user where d.username == UserName && d.password == PassWord select d).ToList();
if (list.Count > 0)
{
Response.Write("登陆成功");
}
else
{
Response.Write("登陆失败");
}
}
return View();
}
}
登陆代码如上,我想登陆完成后跳转到另外一个VIEWs界面,登陆名用session保存起来显示在下一个界面上。。。 怎么实现呢? 展开
//URL访问方式:Home/index
public ActionResult Index()
{
string UserName = Request.Form["username"];
string PassWord = Request.Form["password"];
if (UserName != "" && PassWord != "")
{
List<user> list = (from d in m.user where d.username == UserName && d.password == PassWord select d).ToList();
if (list.Count > 0)
{
Response.Write("登陆成功");
}
else
{
Response.Write("登陆失败");
}
}
return View();
}
}
登陆代码如上,我想登陆完成后跳转到另外一个VIEWs界面,登陆名用session保存起来显示在下一个界面上。。。 怎么实现呢? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询