Asp.Mvc 2.0用户登录实例讲解---(5)用户的编辑与删除(2)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-26 22:13 点击:次
return View();
}
public ActionResult Index()
{
//查询出所有用户
DataSet ds = new Models.SqlHelper().GetAllUsers();
if (ds!=null&&ds.Tables[0].Rows.Count>0)
{
List<Models.UserModels> lists = new List<Models.UserModels>();
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
Models.UserModels model = new Models.UserModels();
model.UserName = ds.Tables[0].Rows[i]["UserName"].ToString();
model.UserPwd = ds.Tables[0].Rows[i]["UserPwd"].ToString();
model.Email = ds.Tables[0].Rows[i]["Email"].ToString();
lists.Add(model);
}
if (lists.Count>0)
{
ViewData["users"] = lists;
}
}
return View();
}
Index页面代码
[html] <table style="border-bottom-width:1px;">
<tr>
<td>用户名</td>
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>