I am trying to implement this ..
http://www.aspsnippets.com/Articles/Load-data-while-Scrolling-Page-down-with-jQuery-AJAX-and-ASPNet.aspx
I have created stored procedure which is working fine. I have changed the database and table name
In code behind I changed string query = "[GetCustomersPageWise]";
to===> string query = "[GetMsgs]" /*which is the correct name of my new stored procedure*/
In repeater code I changed <b><u><span class="name"> <%# Eval("ContactName") %></span></u></b>
to ===>
<b><u><span class="name">
<%# Eval("Date") %></span></u></b> /*and so on. Date is a column name of the table i am using.*/
In Jquery I changed $(".name", table).html(customer.find("ContactName").text());
to =====> $(".name", table).html(customer.find("Date").text());
There are currently 16 rows in the table i am using. THe first 10 are getting loaded in repeater without any problem and then when i scroll down the rest of the 6 repeaters are generated dynamically but all 6 are empty ! So basically i want to know what are the other things that i need to chage if i am using another table instead of northwind's customers table.