Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET
Tip/Trick

Load data dynamically on page scroll using jQuery, AJAX, and ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.35/5 (15 votes)
6 Sep 2012CPOL 96.1K   23   9
Load data dynamically on page scroll.

Introduction

In Facebook you might see status updates of your friends dynamically loaded when you scroll the browser’s scroll bar. In this article I am going to explain how we can achieve this using jQuery and AJAX. 

Using the code

The solution includes two web forms (Default.aspx and AjaxProcess.aspx). The Default.aspx contains a Div with ID myDiv. Initially the Div contains some static data, then data is dynamically appended to it using jQuery and AJAX. 

HTML
<div id="myDiv">
	<p>Static data initially rendered.</p>
</div>

The second Web Form AjaxProcess.aspx contains a web method GetData() that is called using AJAX to retrieve data.

C#
[WebMethod]
public static string GetData()
{
    string resp = string.Empty;
    resp += "<p>This content is dynamically appended to the existing content on scrolling.</p>";
    return resp;
}

Now we can add some jQuery script in Default.aspx that will be fired on page scroll and invokes the GetData()method.

JavaScript
$(document).ready(function () {

   $(window).scroll(function () {
       if ($(window).scrollTop() == $(document).height() - $(window).height()) {
           sendData();
       }
   });

   function sendData() {
       $.ajax(
        {
            type: "POST",
            url: "AjaxProcess.aspx/GetData",
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            async: "true",
            cache: "false",

            success: function (msg) {
                $("#myDiv").append(msg.d);
            },

            Error: function (x, e) {
                alert("Some error");
            }
        });
   }
});

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

JavaScript
$(window).scroll(function () {
   if ($(window).scrollTop() == $(document).height() - $(window).height()) {
       sendData();
   }
});

This condition will identify whether the scroll has moved to the bottom or not. If it has moved to the bottom, dynamic data will get loaded from the server and get appended to myDiv.

JavaScript
success: function (msg) {
    $("#myDiv").append(msg.d);
},

History

Version 1.

License

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


Written By
Web Developer Teknokraaft info systems
India India
http://vivekcek.wordpress.com

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 1169020214-Oct-15 20:46
Member 1169020214-Oct-15 20:46 
Questiondata loss when press back button of browser Pin
Shrikrushna S. Ingle19-Aug-13 19:35
Shrikrushna S. Ingle19-Aug-13 19:35 
GeneralMy vote of 4 Pin
kumarvinodh24-May-13 23:36
kumarvinodh24-May-13 23:36 
QuestionThanks Pin
Altaf N Patel22-May-13 3:25
Altaf N Patel22-May-13 3:25 
GeneralMy vote of 3 Pin
bhargavpp17-Sep-12 19:36
bhargavpp17-Sep-12 19:36 
Question[My vote of 1] kill me with a blunt knife, please... Pin
Seishin#13-Mar-12 22:19
Seishin#13-Mar-12 22:19 
AnswerRe: [My vote of 1] kill me with a blunt knife, please... Pin
vivek poomala14-Mar-12 1:16
vivek poomala14-Mar-12 1:16 
take it as sample you can write mechanism for passing some parameters,counters etc by using static variables
GeneralRe: [My vote of 1] kill me with a blunt knife, please... Pin
Dewey10-Sep-12 7:03
Dewey10-Sep-12 7:03 
AnswerRe: [My vote of 1] kill me with a blunt knife, please... Pin
komaliShiru1-Aug-12 21:44
komaliShiru1-Aug-12 21:44 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.