• 大小: 0.12M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-25
  • 语言: ASP
  • 标签: asp.net  asp  .NET  NET  t  

资源简介

【实例简介】

有關網頁捲軸拉到底時,載入資料的功能,用ASP.NET查詢資料

程式一開始是在後端page_load時先查詢資料,

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;

public partial class AuthorList : System.Web.UI.Page 
{
private const int MAX_RECORDS = 5;

    protected void Page_Load(object sender EventArgs e)
    {
if (!IsPostBack)
BindGrid();
    }

private void BindGrid()
{
// This is first call to db
gvAuthors.DataSource = GetAuthors(0 MAX_RECORDS);
gvAuthors.DataBind();
}

/// 
/// 
/// 

/// The zero-based record number to start with.
/// The maximum number of records to retrieve.
/// 
[WebMethod]
public static IList GetAuthors(int startRecord int maxRecords)
{
BusinessLogic bl = new BusinessLogic();
IList authors = bl.GetAuthors(startRecord maxRecords);

return authors;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1243  2013-04-14 02:00  LoadPartialDataInGridviewUsingJQueryAjax\App_Code\BusinessLogic.cs

     文件        313  2013-04-12 02:55  LoadPartialDataInGridviewUsingJQueryAjax\App_Code\Businessobjects.cs

     文件       1132  2013-04-14 02:00  LoadPartialDataInGridviewUsingJQueryAjax\App_Code\DataAccess.cs

     文件        731  2013-04-14 01:52  LoadPartialDataInGridviewUsingJQueryAjax\AuthorList.aspx

     文件        991  2013-04-14 02:36  LoadPartialDataInGridviewUsingJQueryAjax\AuthorList.aspx.cs

     文件     242990  2010-03-18 20:43  LoadPartialDataInGridviewUsingJQueryAjax\scripts\jquery-1.4.1-vsdoc.js

     文件     168792  2010-03-18 20:43  LoadPartialDataInGridviewUsingJQueryAjax\scripts\jquery-1.4.1.js

     文件      71922  2010-03-18 20:43  LoadPartialDataInGridviewUsingJQueryAjax\scripts\jquery-1.4.1.min.js

     文件       1101  2013-04-14 02:17  LoadPartialDataInGridviewUsingJQueryAjax\scripts\Jscript.js

     文件       8518  2013-04-12 03:10  LoadPartialDataInGridviewUsingJQueryAjax\web.config

     目录          0  2013-04-12 01:23  LoadPartialDataInGridviewUsingJQueryAjax\App_Code

     目录          0  2013-04-12 00:49  LoadPartialDataInGridviewUsingJQueryAjax\App_Data

     目录          0  2013-04-12 01:54  LoadPartialDataInGridviewUsingJQueryAjax\scripts

     目录          0  2013-04-12 02:10  LoadPartialDataInGridviewUsingJQueryAjax

----------- ---------  ---------- -----  ----

               497733                    14


评论

共有 条评论