custom-paging

custom paging or standard paging in ASP .Net which method is efficient?

Let us define that "Standard Paging" which means that paging mechanism provided my either Gridview (ASP .Net 2.0) or ListView (ASP.Net 3.5) and Custom paging - (Paging Control outside the control) - which does not retrieve the data from server not more than 1 Page of records (page - control page size usually 10-15records)) Would like ...

Problem with custom paging in ASP.NET

I'm trying to add custom paging to my site using the ObjectDataSource paging. I believe I've correctly added the stored procedures I need, and brought them up through the DAL and BLL. The problem I have is that when I try to use it on a page, I get an empty datagrid. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="PageTest.asp...

Telerik RadGrid and Custom Paging

Ok, so I'm trying to get my custom paging going on the Telerik RadGrid, but I'm still hitting a wall. (the first part of my question was answered here) So I have implemented the suggestion ALTER PROCEDURE [dbo].[bt_HealthMonitor_GetAll] ( @StartRowIndex int, @MaximumRows int ) AS SET NOCOUNT ON Select RowNum, [ID...

How to implement Gridview Custom paging using Stored Procedure?

Hi folks Can someone redirect me to your own blog link or any other link explaining complete tutorial about how to implement gridview custom paging using stored procedure? My search in google giving me old articles from year 2006. Right now I am using asp.net 3.5 and c#. ...

Paging a Listbox control in WPF

Hello, I have a WPF ListBox with it's ItemSource property bound to an ObservableCollection. Each ListBox Item has many controls that could take some time to load up. I would like to only display/load 5 ListBox items at a time, with some paging support or a "Next" button or something similar. Currently I plan to do this manually and j...