Click here to Skip to main content
Click here to Skip to main content

Load Data From Server While Scrolling Using jQuery AJAX

By , 26 Apr 2012
 

Introduction

This article will demonstrate how to load data from the server while scrolling. Loading data from the server using AJX will help any application in improving its performance because data which is displayed on the screen alone is loaded the first time and more data, if required, will get loaded from the server as the user scrolls.

Background

Facebook is the application which inspired me to write code to load data from the server while scrolling. While browsing Facebook, I was amazed to see that as I scrolled on the page, new data from the server got appended to the existing one. I became curious about implementing the same functionality in C#. I searched for information, but did not find any article or blog on doing this in C#. Of course, there were a few articles for Java and PHP. I read them carefully and started writing code in C#. As it worked successfully I thought I'd share it, so I am posting it here.

The code

To implement the load on scroll functionality, we will require very few lines of code. A WebMethod that will be called from the client side which returns the content to append while scrolling, and a client side function (document.ready) where we will bind the scroll event to load data from the server. Let us see these server and client side methods in detail.

Server method: This method is used to get data from the database or any source and prepares an HTML string depending on the control you are using for appending data to. Here I have just added a message with the serial number.

[WebMethod]
public static string  GetDataFromServer() 
{ 
    string resp = string.Empty; 
    for(int i = 0; i <= 10; i++)
    {
        resp += "<p><span>"  + counter++ + 
          "</span> This content is dynamically appended " + 
          "to the existing content on scrolling.</p>" ; 
    } 
    return resp; 
} 

If you want to load data from database you can modify your method as follows : 

[WebMethod]
public static string GetDataFromServer()
    {
        DataSet ds = new DataSet();
 
        // Set value of connection string here
        string strConnectionString = ""; // Insert your connection string value here
        SqlConnection con = new SqlConnection(strConnectionString);
 
        // Write the select command value as first parameter
        SqlCommand command = new SqlCommand("SELECT * FROM Person", con);
        SqlDataAdapter adp = new SqlDataAdapter(command);
int retVal = adp.Fill(ds);
 
        string resp = string.Empty;
for (int i = 1; i <= ds.Tables[0].Rows.Count; i++)
        {
            string strComment = string.Empty;
if (ds.Tables != null)
            {
if (ds.Tables[0] != null)
                {
if (ds.Tables[0].Rows.Count > 0)
                    {
if (ds.Tables[0].Rows.Count >= i - 1)
                        {
if (ds.Tables[0].Rows[i - 1][0] != DBNull.Value)
                            {
                                strComment = ds.Tables[0].Rows[i - 1][0].ToString();
                            }
                        }
                    }
                }
            }
            resp += "<p><span>" + counter++ + "</span> " + strComment + "</p>";
        }
return resp;
    }  

Client method: At the client side, I have used the document.ready method in which I have registered event binding for scroll on div. I have used two div elements: mainDiv and wrapperDiv. I have registered the scroll event for mainDiv and append dynamic data to wrapperDiv.

$(document).ready( 
function()
{
$contentLoadTriggered = false;
$("#mainDiv").scroll(
function()
{
if($("#mainDiv").scrollTop() >= ($("#wrapperDiv").height() - 
   $("#mainDiv").height()) &&
   $contentLoadTriggered == false)
   $contentLoadTriggered == false)
{
$contentLoadTriggered = true;
$.ajax(
{
type: "POST",
url: "LoadOnScroll.aspx/GetDataFromServer",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (msg) 
{
$("#wrapperDiv").append(msg.d);
$contentLoadTriggered = false;
},
error: function (x, e)
{
alert("The call to the server side failed. " +
x.responseText);
}
}
);
}
}
);
}
);

Here, to check whether the scroller has moved at the bottom, the following condition is used.

if($("#mainDiv").scrollTop() >= 
  ($("#wrapperDiv").height() - $("#mainDiv").height()) &&
   $contentLoadTriggered == false)

This condition will identify whether the scroller has moved at the bottom or not. If it has moved at the bottom, dynamic data will get loaded from the server and get appended to wrapperDiv. The client script to append data to the desired div element is written in the script to run when the asynchronous call results in success.

success: function (msg)
{
$("#wrapperDiv").append(msg.d);
$contentLoadTriggered = false;
}

Here one thing you will notice is that the request will go to the server only when the user has scrolled at the bottom.

I have attached the sample application with this article.

Output

LoadOnScroll/LOS1.JPG

LoadOnScroll/LOS2.JPG

History

First version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Praveen Meghwal
Software Developer (Senior)
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberPham Dinh Truong2 May '13 - 17:01 
QuestionHow to limit the no of records without repeatingmemberVenkatesh Yeluri17 Mar '13 - 18:33 
BugGives error in Jquerymember007alok8 Feb '13 - 0:39 
QuestionGreat Workmemberhassan133331 Jan '13 - 20:19 
QuestionWork Greatmemberamit_8316 Jan '13 - 23:20 
QuestionNice articlememberamit_8315 Dec '12 - 0:38 
GeneralAnother Appreciationmemberwahajahmedansari18 Oct '12 - 1:04 
Questionexplain some lines mean linesmembermaheshbisht30 Sep '12 - 22:53 
GeneralMy vote of 5memberPrasad J2 Aug '12 - 19:42 
GeneralMy vote of 5memberTushar_Patil18 May '12 - 2:41 
QuestionHmmm.. Not a real-world examplememberClutchplate10 May '12 - 6:38 
Questionfor jQuery AJAX load datamemberKien Nguyen Ngoc8 May '12 - 5:51 
AnswerRe: for jQuery AJAX load datamemberPraveen Meghwal9 May '12 - 18:56 
Thanks
SuggestionMy vote of 5memberAkram El Assas26 Apr '12 - 22:34 
GeneralRe: My vote of 5memberPraveen Meghwal29 Apr '12 - 18:33 
GeneralMy vote of 5memberMonjurul Habib26 Apr '12 - 21:10 
GeneralRe: My vote of 5memberPraveen Meghwal29 Apr '12 - 18:33 
GeneralMy vote of 5memberManish Sharma16 Apr '12 - 23:16 
GeneralRe: My vote of 5memberPraveen Meghwal29 Apr '12 - 18:33 
Generalits very usefullmembersuraj mahajan27 Mar '12 - 3:06 
GeneralRe: its very usefullmemberPraveen Meghwal27 Mar '12 - 19:23 
QuestionMy vote of 5memberNguyen Quy Minh22 Feb '12 - 5:10 
AnswerRe: My vote of 5memberPraveen Meghwal22 Feb '12 - 20:05 
QuestionThanks for sharing such a nice article.memberZaheer Mazhar5 Jan '12 - 5:37 
AnswerRe: Thanks for sharing such a nice article.memberZaheer Mazhar5 Jan '12 - 6:22 
GeneralRe: Thanks for sharing such a nice article.memberPraveen Meghwal8 Jan '12 - 22:56 
QuestionAdding SQL datamemberDamo B13 Dec '11 - 5:46 
AnswerRe: Adding SQL datamemberPraveen Meghwal8 Jan '12 - 22:59 
GeneralMy vote of 3memberbasskaran27 Nov '11 - 22:26 
GeneralRe: My vote of 3memberPraveen Meghwal15 Dec '11 - 21:17 
GeneralMy vote of 5membermhamad zarif29 Oct '11 - 7:46 
GeneralRe: My vote of 5memberPraveen Meghwal15 Dec '11 - 21:17 
Questionmy vote of 5...memberKyaw Aung Win24 Oct '11 - 22:43 
AnswerRe: my vote of 5...memberPraveen Meghwal15 Dec '11 - 21:16 
GeneralMy vote of 5memberDilip Baboo18 Aug '11 - 8:15 
GeneralRe: My vote of 5memberPraveen Meghwal18 Aug '11 - 21:03 
GeneralMy vote of 5memberb.paseban17 Aug '11 - 9:22 
GeneralRe: My vote of 5memberPraveen Meghwal17 Aug '11 - 20:26 
Generalnice article ..would try it with JSP thoughmemberacnielson16 Aug '11 - 20:58 
GeneralRe: nice article ..would try it with JSP thoughmemberPraveen Meghwal16 Aug '11 - 22:22 
GeneralMy vote of 5memberMember 57349116 Aug '11 - 18:29 
GeneralRe: My vote of 5memberPraveen Meghwal16 Aug '11 - 23:11 
GeneralMy vote of 5memberJeanMichelG15 Aug '11 - 18:55 
GeneralRe: My vote of 5memberPraveen Meghwal15 Aug '11 - 21:14 
QuestionGood, thanksmemberthami3612 Aug '11 - 0:28 
AnswerRe: Good, thanksmemberPraveen Meghwal15 Aug '11 - 21:15 
GeneralMy vote of 5memberJitendra Zaa11 Aug '11 - 19:18 
GeneralRe: My vote of 5memberPraveen Meghwal15 Aug '11 - 21:15 
QuestionVery good postmemberHamlet Escaño11 Aug '11 - 9:53 
AnswerRe: Very good postmemberPraveen Meghwal15 Aug '11 - 21:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 27 Apr 2012
Article Copyright 2011 by Praveen Meghwal
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid