zoukankan      html  css  js  c++  java
  • Asp UserInfoList 方法二

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserInfoList.aspx.cs" Inherits="AspExam.UserInfoList" %>
    <%@ Import Namespace="AspExam.Model" %>
    <!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>
            <%foreach(UserInfo user in UserList) { %>
                <tr>
                    <td><%=user.Id %></td>
                    <td><%=user.UserName %></td>
                    <td><%=user.UserPass %></td>
                    <td><%=user.RegTime %></td>
                    <td><%=user.Email %></td>
                </tr>
            <%} %>

        </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 List<UserInfo> UserList { get; set; }
            protected void Page_Load(object sender, EventArgs e)
            {
                UserInfoBLL bll = new UserInfoBLL();
                UserList = bll.GetAllUserInfo();
                
            }
        }
    }

  • 相关阅读:
    Java修改excel内容
    text标签onchang事件
    shh将数据导出excel
    正则表达式0到200以内的数
    虚拟内存与物理内存
    捕获内核的异常事件
    linux内存(三)内核与用户空间交互
    linux内存(二)高端内存
    linux内存(一) 内核空间与用户空间
    使用tc配置后端设备,来限制虚拟机网卡带宽
  • 原文地址:https://www.cnblogs.com/dxmfans/p/9434689.html
Copyright © 2011-2022 走看看