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

  • 相关阅读:
    Visual SVN1.5以上版本下载及破解过程
    C#线程系列讲座(2):Thread类的应用
    a标签的href 和onclick
    Windows 服务快捷启动命令
    iframe 跨域自动适应高度
    修正认知:string、Empty和null三者的正确区别

    线索二叉树
    最大连续子序列
    寻找最近点对
  • 原文地址:https://www.cnblogs.com/dxmfans/p/9434689.html
Copyright © 2011-2022 走看看