Posted on: 4/24/2014 2:42:10 AM | Views : 352

I have 7 records in my database table which is called EntryTable. I set page limit to 5 records for each page. So page 1 will have 5 records, and page2 will have 2 records. After I entered nothing and clicked search, all records will be displayed and after I click page 2, the whole gridview disappear.

After Searching when nothing is entered in textbox




After clicking page 2 


public partial class Search : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == fa ...

Go to the complete details ...