码迷,mamicode.com
首页 > Windows程序 > 详细

ASP.NET WEB窗体aspx 展示用户列表

时间:2016-11-29 07:17:23      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:send   pid   div   padding   数据   apt   public   use   void   

 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 展示用户列表

标签:send   pid   div   padding   数据   apt   public   use   void   

原文地址:http://www.cnblogs.com/zhaodachao/p/6111798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!