当前位置:  编程技术>.net/c#/asp.net

Asp.net GridView控件使用常用范例

    来源: 互联网  发布时间:2014-08-30

    本文导语:  1、前台.aspx   代码示例: || 10 15 20 30 2、后台.cs   代码示例: #region分页 protected void BindFollowExamInfoGridView(int PersonID)   {     int currentpage = Convert.ToInt32(lblPage.Text);     DataTable dt = new DataTable();    ...

1、前台.aspx
 

代码示例:




||

10
15
20
30

2、后台.cs
 

代码示例:
#region分页
protected void BindFollowExamInfoGridView(int PersonID)
  {
    int currentpage = Convert.ToInt32(lblPage.Text);
    DataTable dt = new DataTable();
    dt = feibf.GetByPersonIDFollowExamInfo(PersonID);  //查询指定人的随访信息记录
    if (dt.Rows.Count > 0)
    {
      FollowExamInfoGridView.DataSource = dt;
      FollowExamInfoGridView.DataBind();
      PagedDataSource ps = new PagedDataSource();
      ps.DataSource = dt.DefaultView;
      ps.AllowPaging = true;
      ps.PageSize = Convert.ToInt32(ddlPage.SelectedValue);
      lblPageCount.Text = ps.PageCount.ToString();
      this.lblPreButton.Enabled = true;
      this.lblNextButton.Enabled = true;
      ps.CurrentPageIndex = currentpage - 1;
      if (currentpage == 1)
      {
        this.lblPreButton.Enabled = false;
        this.lblFirstButton.Enabled = false;
      }
      else
      {
        this.lblPreButton.Enabled = true;
        this.lblFirstButton.Enabled = true;
      }
      if (currentpage == ps.PageCount)
      {
        this.lblNextButton.Enabled = false;
        this.lblLastButton.Enabled = false;
      }
      else
      {
        this.lblNextButton.Enabled = true;
        this.lblLastButton.Enabled = true;
      }
      FollowExamInfoGridView.DataSource = ps;
      FollowExamInfoGridView.DataBind();
    }
    
  }
  protected void lblPreButton_Click(object sender, EventArgs e)
  {
    this.lblPage.Text = Convert.ToString(Convert.ToUInt32(lblPage.Text) - 1);
    BindFollowExamInfoGridView(Convert.ToInt32(Request.QueryString["PersonID"]));
  }
  protected void lblNextButton_Click(object sender, EventArgs e)
  {
    this.lblPage.Text = Convert.ToString(Convert.ToUInt32(lblPage.Text) + 1);
    BindFollowExamInfoGridView(Convert.ToInt32(Request.QueryString["PersonID"]));
  }
  protected void lblFirstButton_Click(object sender, EventArgs e)
  {
    this.lblPage.Text = "1";
    BindFollowExamInfoGridView(Convert.ToInt32(Request.QueryString["PersonID"]));
  }
  protected void lblLastButton_Click(object sender, EventArgs e)
  {
    this.lblPage.Text = lblPageCount.Text;
    BindFollowExamInfoGridView(Convert.ToInt32(Request.QueryString["PersonID"]));
  }
  protected void ddlPage_SelectedIndexChanged(object sender, EventArgs e)
  {
    lblPage.Text = "1";
    BindFollowExamInfoGridView(Convert.ToInt32(Request.QueryString["PersonID"]));
  }
#endregion

3、排序
 

代码示例:
Allowsort = "true"
sortExpression = "ID"
DataView dv = SortBindGrid(dt);
#region排序
  protected void FollowExamInfoGridView_Sorting(object sender, GridViewSortEventArgs e)
  {
    ViewState["sortexpression"] = e.SortExpression;
    if (ViewState["sortdirection"] == null)
    {
      ViewState["sortdirection"] = "asc";
    }
    else
    {
      if (ViewState["sortdirection"].ToString() == "asc")
      {
        ViewState["sortdirection"] = "desc";
      }
      else
      {
        ViewState["sortdirection"] = "asc";
      }
    }
   
    BindFollowExamInfoGridView(Convert.ToInt32(HiddenPersonID.Value));
  }
  public DataView SortBindGrid(DataTable table)
  {
    if (table != null)
    {
      DataView dv = table.DefaultView;
      if (ViewState["sortexpression"] != null && ViewState["sortdirection"] != null)
      {
        dv.Sort = ViewState["sortexpression"].ToString() + " " + ViewState["sortdirection"].ToString();
      }
      return dv;
    }
    else
    {
      return null;
    }
  }
  #endregion

 

 1 2 3 下一页 尾页

    
 
 

您可能感兴趣的文章:

  • asp.net Control控件常用的属性与方法
  • ASP.NET 页面中加添加用户控件的写法
  • asp.net Google样式分页控件用法
  • Asp.net日历控件显示年和月
  • asp控件和html控件的概念区别
  • Asp.Net其他页面如何调用Web用户控件写的分页
  • asp.net动态添加非标准html控件的方法
  • asp.net MVC进阶学习---HtmlHelper之GridView控件拓展(一)
  • asp.net 用户控件中图片与样式引用的问题
  • asp.net ajax时用alert弹出对话框与验证控件冲突的解决方法
  • 把某个asp.net 控件替换成自定义控件的方法
  • asp.net Textbox服务器控件的技巧分享(图文)
  • asp.net(c#版)添加DataRow数据列到DataTable控件
  • asp.net 动态创建控件的演示实例
  • asp.net服务器控件调整技巧
  • asp.net实例代码 在DataGrid控件中显示数据
  • asp.net Textbox服务器控件的例子
  • 学习asp.net动态添加控件的方法
  • asp.net MVC进阶学习---HtmlHelper控件解析(四)
  • asp.net 动态添加多个用户控件(实例代码)
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • asp.net GridView删除对话框的二个方法
  • Asp.net设置GridView自适应列宽的实现代码
  • asp.net GridView用法笔记
  • asp.net遍历文件夹下所有子文件夹并绑定到gridview上的方法
  • ASP.NET4 GridView的四种排序样式详解
  • asp.net GridView控件的几个事件的用法详解
  • asp.net读取excel中的数据并绑定在gridview
  • asp.net MVC进阶学习---HtmlHelper之GridView控件拓展(二)
  • asp.net MVC进阶学习---HtmlHelper之GridView控件拓展(五)
  • ASP.NET―001:GridView绑定List、页面返回值具体实现
  • asp.net MVC进阶学习---HtmlHelper之GridView控件拓展(四)
  • asp.net MVC进阶学习---HtmlHelper之GridView控件拓展(三)
  • asp.net GridView 应用大全
  • ASP.NET之 Ajax相关知识介绍及组件图
  • 我想了解一些关于Java怎样与Asp或Asp.net结合方面在未来发展方向的问题?
  • c#/ASP.NET操作cookie(读写)代码示例
  • asp.net UrlEncode对应asp urlencode的处理方法
  • asp.net实例 定义和使用asp:AccessDataSource
  • win2008 r2 服务器环境配置(FTP/ASP/ASP.Net/PHP)
  • asp与asp.net的session共享
  • 如何在unix下发布asp?
  • 怎么让Apache支持Asp?
  • ??谁能把ASP代码改为JSP的
  • Linux平台下哪种方法实现ASP好?
  • ASP和ASP.Net共享Session解决办法
  • 通过socket和asp打交道
  • 犹豫中……,到底是选择ASP,还是JSP?
  • asp 是否 可用applet标签?帮忙!!
  • asp.net判断数据库表是否存在 asp.net修改表名的方法
  • 新人提问:asp+access的程序在linux下怎么改?
  • 用JAVA APPLET做的交互式网页和ASP、PHP做的相比有什么优势呢?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3