ASP UserInfoList 方法1
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<th>Id</th><th>UserName</th><th>UserPass</th><th>RegTime</th><th>Email</th>
</tr>
<%=strList %>
</table>
</div>
</form>
</body>
</html>
using AspExam.BLL;
using AspExam.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace AspExam
{
public partial class UserInfoList : System.Web.UI.Page
{
public string strList { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
UserInfoBLL bll = new UserInfoBLL();
List<UserInfo> list = bll.GetAllUserInfo();
StringBuilder sb = new StringBuilder();
foreach (UserInfo user in list)
{
sb.AppendFormat("<tr><td>{0}</td><td>{1}</td><td>{2}</td><td>{3}</td><td>{4}</td></tr>", user.Id, user.UserName, user.UserPass, user.RegTime, user.Email);
}
strList = sb.ToString();
}
}
}