首页 > 代码库 > ASP.NET WEB窗体aspx 展示用户列表
ASP.NET WEB窗体aspx 展示用户列表
1 <body> 2 <table> 3 <caption>用户信息表</caption> 4 <tr> 5 <td colspan="5" style="text-align:left;padding-left:10px;" title="用户数据添加"><a href="userAdd.htm">用户数据添加</a></td> 6 </tr> 7 <tr> 8 <th>EmpId</th> 9 <th>EmpName</th> 10 <th>EmpAge</th> 11 <th>DelFlag</th> 12 <th>管理</th> 13 </tr> 14 <%foreach (Employee rows in Employee_list){ %> 15 <tr> 16 <td><%=rows.EmpId %></td> 17 <td><%=rows.EmpName %></td> 18 <td><%=rows.EmpAge %></td> 19 <td><%=rows.DelFlag %></td> 20 <td>修改|<a href="Delete.aspx?id=<%=rows.EmpId %>" onclick="return Del()">删除</a>|浏览</td> 21 </tr> 22 <%} %> 23 </table> 24 </body> 25 </html>
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.UI; 6 using System.Web.UI.WebControls; 7 using CZBK.TestProject.Model; 8 9 namespace CZBK.TestProject.WebApp.admin 10 { 11 public partial class UserList : System.Web.UI.Page 12 { 13 public List<Employee> Employee_list { get; set; } 14 protected void Page_Load(object sender, EventArgs e) 15 { 16 BLL.EmployeeService emp = new BLL.EmployeeService(); 17 List<Employee> list = emp.GetEntityList(); 18 Employee_list = list; 19 } 20 } 21 }
ASP.NET WEB窗体aspx 展示用户列表
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。