ASP.NET GridView学习之一
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-19
Default.aspx <%@ 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> </head> <body> <form id="form1" runat="server"> <div> <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" CellPadding="3" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="5"> <PagerSettings FirstPageImageUrl="~/Images/First.gif" FirstPageText="|&lt;" LastPageImageUrl="~/Images/Last.gif" LastPageText="&gt;|" Mode="NumericFirstLast" NextPageImageUrl="~/Images/Next.gif" PageButtonCount="5" PreviousPageImageUrl="~/Images/Previous.gif" /> <FooterStyle BackColor="White" ForeColor="#000066" /> <Columns> <asp:BoundField DataField="ClientName" HeaderText="姓名" SortExpression="Name" /> <asp:BoundField DataField="AddressStr" HeaderText="地址" SortExpression="Address" /> <asp:BoundField DataField="PostCode" HeaderText="邮编" SortExpression="PostCode" /> </Columns> <RowStyle ForeColor="#000066" /> <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" /> <PagerStyle BackColor="#FFC080" BorderColor="Blue" Font-Bold="True" ForeColor="#000066" HorizontalAlign="Left" /> <HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" /> </asp:GridView> </div> </form> </body> </html> ClientInfo.cs 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; /**//// <summary> /// ClientInfo 的摘要说明 /// </summary> public class ClientInfo { private int clientID;//客户编号 public int ClientID { get { return clientID; } set { clientID = value; } } pr |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET GridView学习之一的所有评论