您的位置:首页 > 其它

GridView 与自定义对象的绑定和分页

2008-03-04 15:44 447 查看
一、自定义对象和对象集合

using System;
using System.Collections;
using System.Collections.Generic;

public class Bus

public class BusCollection
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>自定义对象绑定与分页</title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1"
runat="server"
AutoGenerateColumns="False"
CssClass="class2"
EnableViewState="False"
AllowPaging="true"
OnPageIndexChanging="GridView1_PageIndexChanging">
<Columns>
<asp:BoundField DataField="Name" HeaderText="手机号码" />
<asp:BoundField DataField="Longitude" DataFormatString="{0:0.00000}" HeaderText="经度" />
<asp:BoundField DataField="Latitude" DataFormatString="{0:0.00000}" HeaderText="纬度" />
</Columns>
</asp:GridView>
</div>
</form>
</body>
</html>

后台代码

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page

样式表StyleSheet.css

*

.class2

.class2 td
.class2 th
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: