Posted on: 3/21/2014 7:15:17 PM | Views : 306

Hello
Tested this codes and its working good. 
http://www.nullskull.com/a/1247/implementing-continuous-scrolling-ui-pattern-in-aspnet.aspx
<%@ Page Language="C#" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.SqlClient" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DataSet ds = new DataSet(); SqlConnection conn = new SqlConnection("_place_your_connection_string_he ...

Go to the complete details ...