Stories recently tagged with 'Paging'

Paging Listbox; Another jQuery Plugin (moretechtips.net)

submitted by MikeMoreMikeMore(294) 2 years, 6 months ago

Few months ago I posted a Javascript class on how to Implement a paging listbox using jQuery. which has drawn a lot of traffic and few questions lately so I thought it would be more convenient to rewrite the code as jQuery plugin and make few enhancements plus providing a complete sample code in VB.Net and C#. read more...

add a comment |category: |Views: 100

tags: another

Efficient Server Side Paging Alternatives(csharp-codesamples.com)

submitted by rohanwarangrohanwarang(80) 2 years, 9 months ago

Every one of us has used paging in our projects to display tabular data in DataGrids or GridViews or in the more recent and more flexible ListViews. The problem we often face is when the data is less the paging works fine, but as the data starts to increase the page load times start increasing. The main reason for this is because we tend to bind the grids with entire data table and then use the built in functionality for paging. This article describes how to effectively do server side paging by retrieving only a finite amount of data using the traditional stored procedure technique, but optimized for not being affected by volume of data, and an alternative method using the very famous linq framework. read more...

add a comment |category: |Views: 49

tags: another

jQuery & Ajax Fun: Implementing a Paging Listbox(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years ago

Many times in web forms we need to provide a listbox with lots of elements, A good solution is to filter and page these elements to speedup page loading and optimize DB/Network usage.. This is a complete implementation of a paging listbox using jQuery on client side and ASP.Net on server side.. read more...

add a comment |category: |Views: 154

tags: another

Tweak DataSet Paging in ASP.Net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 1 month ago

Wanted to focus on how to tweak paging using DataSet as it is unpopular tip and it saves lots of time to return records in closer pages which usually gets more hits than further pages... read more...

add a comment |category: |Views: 20

tags: another

Traditional yet Powerful : Data Access Layer for ASP.Net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 1 month ago

This is a complete example of creating Data Access Layer(DAL) using the traditional yet powerful "Object to Relational mapping model" or "Custom Entity Classes" that support Paging too.. read more...

add a comment |category: |Views: 54

tags: another

Paging in ASP.Net/VB.Net using DataReader(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 2 months ago

I wanted to highlight more on this method of paging using DataReader cause you won't see out there very often.. although it is simpler than SQL Paging methods and it is slightly faster than usual DataSet paging method.. read more...

add a comment |category: |Views: 78

tags: another

Paging in ASP and ASP.Net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 2 months ago

Comparing paging methods : DataSet , DateReader , Recordset, Top Clause , Row_Number Function I did a simple timing using these paging methods on one table of more than 1 million records , getting & looping 100 records per page.. read more...

add a comment |category: |Views: 14

tags: another

Easily build powerful client-side AJAX paging, using jQuery(encosia.com)

submitted by gt1329agt1329a(7849) 3 years, 5 months ago

An in-depth example of using jQuery to build client-side paging, including progress indicators, to page into any server side data source that can be JSON serialized by ASP.NET AJAX. read more...

add a comment |category: |Views: 528

tags: another

PagedList Strikes Back(squaredroot.com)

submitted by TroyMGTroyMG(2670) 3 years, 7 months ago

A few months ago I posted about my changes to Rob Conery's PagedList class. Since writing that article many comments have been left about how to further improve the design, which have since been incorporated into a new, further improved PagedList class. read more...

add a comment |category: |Views: 271

tags: another

Efficient Paging in SQL Server via LINQ(gotnet.biz)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

Efficient Paging in SQL Server via LINQ. read more...

add a comment |category: |Views: 68

tags: another

GOTCHA - LINQtoSQL Paging Problem(dotnethitman.spaces.live.com)

submitted by misbaharefinmisbaharefin(845) 3 years, 9 months ago

A quick search for how to display paged records in ASP.NET will yield a ton of links and how to's ranging from as simple as automatic paging with the grid controls to custom paging and server side paging in SQL Server, but what about paging in LINQ? read more...

add a comment |category: |Views: 21

tags: another

Pagination with ASP.NET and SQL Server 2005(jaltiere.com)

submitted by jaltierejaltiere(885) 4 years, 1 month ago

This article shows a way to paginate a large data set using a stored procedure in SQL Server and a user control in ASP.NET. read more...

add a comment |category: |Views: 342

tags: another

SubSonic: SonicCast #2 - All About Paging(blog.wekeroad.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 6 months ago

Paging isn't always the easiest thing to figure out - and sometimes not the most performant thing you can do to a we site. Here's a webcast to show you how to set it up both ways: the ASP way, and the SubSonic way. read more...

add a comment |category: |Views: 93

tags: another

SubSonic, ObjectDataSource, Paging, and you!(kevinisom.net)

submitted by kevnzkevnz(858) 4 years, 6 months ago

How to implement paging with the Controllers generated by SubSonic. Corrected URL read more...

3 comments |category: |Views: 332

tags: another

Filtering Custom Paged Results(aspnet.4guysfromrolla.com)

submitted by wintorezwintorez(190) 4 years, 10 months ago

. read more...

add a comment |category: |Views: 14

tags: another

Easy, yet fast, SQL paging solution(themanaged.net)

submitted by soheilprosoheilpro(110) 4 years, 11 months ago

No stored procedure/temporary table/cursor/variable needed. read more...

add a comment |category: |Views: 37

tags: another