一个datalist分页的例子
  <% @ Page Language="C#" %> 
  <% @ Import Namespace="System.Data" %> 
  <% @ Import Namespace="System.Data.OleDb" %> 
  <Script Language="C#" Runat="Server"> 
  /* 
   Create By 飞刀 
   http://www.aspcn.com 
   2001-7-25 01:44 
   
   Support .Net Framework Beta 2 
  */    OleDbConnection MyConn; 
  int PageSize,RecordCount,PageCount,CurrentPage; 
  public void Page_Load(Object src,EventArgs e) 
  { 
   //设定PageSize 
   PageSize = 10; 
   
   //连接语句 
   string MyConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source="+Server.MapPath(".")+"..\\DataBase\\db1.mdb;"; 
   MyConn = new OleDbConnection(MyConnString); 
   MyConn.Open(); 
   
   //第一次请求执行 
   if(!Page.IsPostBack) 
   { 
   ListBind(); 
   CurrentPage = 0; 
   ViewState["PageIndex"] = 0; 
   
   //计算总共有多少记录 
   RecordCount = CalculateRecord(); 
   lblRecordCount.Text = RecordCount.ToString(); 
   
   //计算总共有多少页 
   PageCount = RecordCount/PageSize; 
   lblPageCount.Text = PageCount.ToString(); 
   ViewState["PageCount"] = PageCount; 
   } 
  } 
  //计算总共有多少条记录 
  public int CalculateRecord() 
  { 
   int intCount; 
   string strCount = "select count(*) as co from Score"; 
   OleDbCommand MyComm = new OleDbCommand(strCount,MyConn); 
   OleDbDataReader dr = MyComm.ExecuteReader(); 
   if(dr.Read()) 
   { 
   intCount = Int32.Parse(dr["co"].ToString()); 
   } 
   else 
   { 
   intCount = 0; 
   } 
   dr.Close(); 
   return intCount; 
  } 
   
  ICollection CreateSource() 
  { 
   
   int StartIndex; 
   
   //设定导入的起终地址 
   StartIndex = CurrentPage*PageSize; 
   string strSel = "select * from Score"; 
   DataSet ds = new DataSet(); 
   
   OleDbDataAdapter MyAdapter = new OleDbDataAdapter(strSel,MyConn); 
   MyAdapter.Fill(ds,StartIndex,PageSize,"Score"); 
   
   return ds.Tables["Score"].DefaultView; 
  } 
  public void ListBind() 
  { 
   score.DataSource = CreateSource(); 
   score.DataBind(); 
   
   lbnNextPage.Enabled = true; 
   lbnPrevPage.Enabled = true; 
   if(CurrentPage==(PageCount-1)) lbnNextPage.Enabled = false; 
   if(CurrentPage==0) lbnPrevPage.Enabled = false; 
   lblCurrentPage.Text = (CurrentPage+1).ToString(); 
   
  } 
   
  public void Page_OnClick(Object sender,CommandEventArgs e) 
  { 
   CurrentPage = (int)ViewState["PageIndex"]; 
   PageCount = (int)ViewState["PageCount"]; 
   
   string cmd = e.CommandName; 
   //判断cmd,以判定翻页方向 
   switch(cmd) 
   { 
   case "next": 
   if(CurrentPage<(PageCount-1)) CurrentPage++; 
   break; 
   case "prev": 
   if(CurrentPage>0) CurrentPage--; 
   break; 
   } 
   
   ViewState["PageIndex"] = CurrentPage; 
   
   ListBind(); 
   
  } 
  </script> 
  <html> 
  <head> 
  <title></title> 
  </head> 
  <body> 
  <form runat="server"> 
  共有<asp:Label id="lblRecordCount" ForeColor="red" runat="server" />条记录  
  当前为<asp:Label id="lblCurrentPage" ForeColor="red" runat="server" />/<asp:Label id="lblPageCount" ForeColor="red" runat="server" />页  
   
  <asp:DataList id="score" runat="server" 
  HeaderStyle-BackColor="#aaaadd" 
  AlternatingItemStyle-BackColor="Gainsboro" 
  EditItemStyle-BackColor="yellow" 
  > 
   <ItemTemplate> 
   姓名:<%# DataBinder.Eval(Container.DataItem,"Name") %> 
   <asp:LinkButton id="btnSelect" Text="编辑" CommandName="edit" runat="server" /> 
   </ItemTemplate> 
  </asp:DataList> 
  <asp:LinkButton id="lbnPrevPage" Text="上一页" CommandName="prev" OnCommand="Page_OnClick" runat="server" /> 
  <asp:LinkButton id="lbnNextPage" Text="下一页" CommandName="next" OnCommand="Page_OnClick" runat="server" /> 
   
  </form> 
  </body> 
  </html>
我想把它分开写,一个aspx,一个cs
在面板里设置了linkbutton的command属性还是提示e.CommandNameE:\website\Temp\WebForm2.aspx.cs(90): “System.EventArgs”并不包含对“CommandName”的定义哪位高手帮忙写一下吧,很急,谢谢!

解决方案 »

  1.   

    http://dotnet.aspx.cc/ShowDetail.aspx?id=47DD34FD-ED0B-4455-94E8-CD9F63E19893
      

  2.   

    vb的,他的也是写在一个aspx页面里的,
      

  3.   

    上面那份源码直接写在一个aspx文件里也是可以用的
      

  4.   

    把public void Page_OnClick(Object sender,CommandEventArgs e)
    改为
    protected void Page_OnClick(Object sender,CommandEventArgs e)
    试试
      

  5.   

    //前台
    <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="Document.WebForm1" %>
    <HTML>
    <HEAD>
    <title></title>
    <META http-equiv="Content-Type" content="text/html; charset=gb2312">
    </HEAD>
    <body>
    <form runat="server" ID="Form1">
    共有<asp:Label id="lblRecordCount" ForeColor="red" runat="server" />条记录 当前为<asp:Label id="lblCurrentPage" ForeColor="red" runat="server" />/<asp:Label id="lblPageCount" ForeColor="red" runat="server" />页
    <asp:DataList id="score" runat="server" HeaderStyle-BackColor="#aaaadd" AlternatingItemStyle-BackColor="Gainsboro"
    EditItemStyle-BackColor="yellow">
    <ItemTemplate>
    姓名:<%# DataBinder.Eval(Container.DataItem,"text") %>
    <asp:LinkButton id="btnSelect" Text="编辑" CommandName="edit" runat="server" />
    </ItemTemplate>
    </asp:DataList>
    <asp:LinkButton id="lbnPrevPage" Text="上一页" CommandName="prev" OnCommand="Page_OnClick" runat="server" />
    <asp:LinkButton id="lbnNextPage" Text="下一页" CommandName="next" OnCommand="Page_OnClick" runat="server" />
    </form>
    </body>
    </HTML>//后台
    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 System.Drawing.Imaging;
    using System.Data.OleDb;
    namespace Document
    {
    /// <summary>
    /// Summary description for WebForm1.
    /// </summary>
    public class WebForm1 : System.Web.UI.Page
    {
    protected System.Web.UI.WebControls.Label lblRecordCount;
    protected System.Web.UI.WebControls.Label lblCurrentPage;
    protected System.Web.UI.WebControls.Label lblPageCount;
    protected System.Web.UI.WebControls.DataList score;
    protected System.Web.UI.WebControls.LinkButton lbnPrevPage;
    protected System.Web.UI.WebControls.LinkButton lbnNextPage;

    System.Data.OleDb.OleDbConnection MyConn=new System.Data.OleDb.OleDbConnection(); 
    int PageSize,RecordCount,PageCount,CurrentPage; 
    public void Page_Load(Object src,EventArgs e) 

    //设定PageSize 
    PageSize = 10; 
       
    //连接语句 
    //public static string ConnectionString=System.Configuration .ConfigurationSettings .AppSettings["ConnectionString"];
    string MyConnString = System.Configuration .ConfigurationSettings .AppSettings["ConnectionString"];
    MyConn = new OleDbConnection(MyConnString); 
    MyConn.Open(); 
       
    //第一次请求执行 
    if(!Page.IsPostBack) 

    ListBind(); 
    CurrentPage = 0; 
    ViewState["PageIndex"] = 0; 
       
    //计算总共有多少记录 
    RecordCount = CalculateRecord(); 
    lblRecordCount.Text = RecordCount.ToString(); 
       
    //计算总共有多少页 
    PageCount = RecordCount/PageSize; 
    lblPageCount.Text = PageCount.ToString(); 
    ViewState["PageCount"] = PageCount; 


    //计算总共有多少条记录 
    public int CalculateRecord() 

    int intCount; 
    string strCount = "select count(*) as co from treeview"; 
    OleDbCommand MyComm = new OleDbCommand(strCount,MyConn); 
    OleDbDataReader dr = MyComm.ExecuteReader(); 
    if(dr.Read()) 

    intCount = Int32.Parse(dr["co"].ToString()); 

    else 

    intCount = 0; 

    dr.Close(); 
    return intCount; 

       
    ICollection CreateSource() 

       
    int StartIndex; 
       
    //设定导入的起终地址 
    StartIndex = CurrentPage*PageSize; 
    string strSel = "select * from treeview"; 
    DataSet ds = new DataSet(); 
       
    OleDbDataAdapter MyAdapter = new OleDbDataAdapter(strSel,MyConn); 
    MyAdapter.Fill(ds,StartIndex,PageSize,"treeview"); 
       
    return ds.Tables["treeview"].DefaultView; 

    public void ListBind() 

    score.DataSource = CreateSource(); 
    score.DataBind(); 
       
    lbnNextPage.Enabled = true; 
    lbnPrevPage.Enabled = true; 
    if(CurrentPage==(PageCount-1)) lbnNextPage.Enabled = false; 
    if(CurrentPage==0) lbnPrevPage.Enabled = false; 
    lblCurrentPage.Text = (CurrentPage+1).ToString(); 
       

       
    protected void Page_OnClick(Object sender,CommandEventArgs e) 

    CurrentPage = (int)ViewState["PageIndex"]; 
    PageCount = (int)ViewState["PageCount"]; 
       
    string cmd = e.CommandName; 
    //判断cmd,以判定翻页方向 
    switch(cmd) 

    case "next": 
    if(CurrentPage<(PageCount-1)) CurrentPage++; 
    break; 
    case "prev": 
    if(CurrentPage>0) CurrentPage--; 
    break; 

       
    ViewState["PageIndex"] = CurrentPage; 
       
    ListBind(); 
       
    }  #region Web 窗体设计器生成的代码
    override protected void OnInit(EventArgs e)
    {
    //
    // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
    //
    InitializeComponent();
    base.OnInit(e);
    }
      
    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {    
    this.Load += new System.EventHandler(this.Page_Load); }
    #endregion
    }
    }以上代码可以执行通过
      

  6.   

    “System.EventArgs” 不包含对“CommandName”的定义
    "Ssytem.CommandEventArgs" 包含对“CommandName”的定义