关于asp.net中的DataList的问题! 5

DataList可以分页可以分页吗??请提供点代码!谢谢!... DataList可以分页可以分页吗??请提供点代码!谢谢! 展开
 我来答
百度网友eb0081a7e
2007-11-20 · TA获得超过1081个赞
知道小有建树答主
回答量:788
采纳率:0%
帮助的人:0
展开全部
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using ContainerText.DB;
using System.Data.SqlClient;

namespace ContainerText.DataList
{
/// <summary>
/// DetachPage 的摘要说明。
/// </summary>
public partial class DetachPage : System.Web.UI.Page
{
DataSet ds;
SqlDataAdapter dr;
int num;

protected void Page_Load(object sender, System.EventArgs e)
{
if(!this.IsPostBack)
{
Label2.Text = "1";
DataListDataBind();
}
}

private void DataListDataBind()
{
num = Convert.ToInt32(Label2.Text);
SqlConnection con = new SqlConnection

("server=.;uid=sa;database=数据库");
dr = new SqlDataAdapter("select * from

Employees",con);
ds = new DataSet();
dr.Fill(ds,"Employees");
PagedDataSource ps = new PagedDataSource();
ps.DataSource = ds.Tables["Employees"].DefaultView;
ps.AllowPaging = true;
ps.PageSize = 3;
ps.CurrentPageIndex = num - 1;
this.Button1.Enabled = true;
this.Button2.Enabled = true;
if(num==1)
{
this.Button1.Enabled = false;
}
if(num==ps.PageCount)
{
this.Button2.Enabled = false;
}
DataList1.DataSource = ps;
DataList1.DataBind();
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{

}
#endregion

protected void Button2_Click(object sender, System.EventArgs

e)
{
Label2.Text = Convert.ToString(Convert.ToInt32

(Label2.Text) + 1);
DataListDataBind();
}

protected void Button1_Click(object sender, System.EventArgs

e)
{
Label2.Text = Convert.ToString(Convert.ToInt32

(Label2.Text) - 1);
DataListDataBind();
}
}
}

html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>DetachPage</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
<form id="Form1" method="post" runat="server">
<P align="center"><FONT face="宋体">
<asp:Label id="Label1" runat="server" Width="81px" Height="24px">当前页:</asp:Label>
<asp:Label id="Label2" runat="server" Width="32px" Height="24px"></asp:Label>
<asp:Button id="Button1" runat="server" Text="上一页" onclick="Button1_Click"></asp:Button>
<asp:Button id="Button2" runat="server" Text="下一页" onclick="Button2_Click"></asp:Button>
<asp:DataList id="DataList1" runat="server" Width="308px" BorderColor="#CC9966" GridLines="Both"
BorderWidth="1px" BorderStyle="Double" BackColor="White" CellPadding="4" Height="208px">
<SelectedItemStyle Font-Bold="True" ForeColor="#663399" BackColor="#FFCC66"></SelectedItemStyle>
<HeaderTemplate>
<P>雇员信息表</P>
</HeaderTemplate>
<AlternatingItemStyle Font-Size="Medium" Font-Names="华文彩云"></AlternatingItemStyle>
<ItemStyle Font-Size="Medium" Font-Names="华文彩云" ForeColor="#330099" BackColor="White"></ItemStyle>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"FirstName") %>
<%# DataBinder.Eval(Container.DataItem,"LastName") %>
<%# DataBinder.Eval(Container.DataItem,"City") %>
</ItemTemplate>
<FooterStyle ForeColor="#330099" BackColor="#FFFFCC"></FooterStyle>
<HeaderStyle Font-Bold="True" ForeColor="#FFFFCC" BackColor="#990000"></HeaderStyle>
<AlternatingItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"FirstName") %>
<%# DataBinder.Eval(Container.DataItem,"LastName") %>
<%# DataBinder.Eval(Container.DataItem,"City") %>
</AlternatingItemTemplate>
</asp:DataList></FONT></P>
</form>
<P align="center"><FONT face="宋体"></FONT></P>
</body>
</HTML>
佳达源
2024-10-28 广告
深圳市佳达源电子有限公司主要经营,电子产品销售:电子元器件批发:电子元器件要售:计算机软硬件及辅助设备批发:计算机软硬件及辅助设备零售;家居用品销售;家具销售;灯具销售;安防设备销售;日用百货销售;厨具卫具及日用杂品零售:日用家电零售:五金... 点击进入详情页
本回答由佳达源提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式