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();
                
            }
        }
    }

  • 相关阅读:
    ExtJS面向对象
    简单理解Ext.DomQuery操作CSS3选择器
    简单理解Ext.extend
    Pycharm去掉项目所有 # 注释
    windows 杀死进程
    mongo官方企业版安装及数据库授权使用
    python中赋值,深拷贝,浅拷贝区别
    测试驱动开发简单理解
    Flask与WSGI
    Python直接改变实例化对象的列表属性的值 导致在flask中接口多次请求报错
  • 原文地址:https://www.cnblogs.com/dxmfans/p/9434689.html
Copyright © 2011-2022 走看看