zoukankan      html  css  js  c++  java
  • ASP UserInfoList 方法1

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserInfoList.aspx.cs" Inherits="AspExam.UserInfoList" %>


    <!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>
            <%=strList %>
        </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 string strList { get; set; }
            protected void Page_Load(object sender, EventArgs e)
            {
                UserInfoBLL bll = new UserInfoBLL();
                List<UserInfo> list = bll.GetAllUserInfo();
                StringBuilder sb = new StringBuilder();
                foreach (UserInfo user in list)
                {
                    sb.AppendFormat("<tr><td>{0}</td><td>{1}</td><td>{2}</td><td>{3}</td><td>{4}</td></tr>", user.Id, user.UserName, user.UserPass, user.RegTime, user.Email);
                }
                strList = sb.ToString();
            }
        }
    }

  • 相关阅读:
    have you declared this activity in your AndroidManifest.xml?
    Android收回输入法的实现
    Android手机Home键重写
    Android屏幕点击事件重写
    拖动ListView列表时背景变黑
    AFNetworking vs ASIHTTPRequest vs MKNetworkKit
    libgif.so
    android.support.v4.widget.DrawerLayout
    Titanium vs PhoneGap
    Non-constant Fields in Case Labels
  • 原文地址:https://www.cnblogs.com/dxmfans/p/9434690.html
Copyright © 2011-2022 走看看