Questions tagged [custompaging]
68 questions
0
votes
1 answer
Solution to Simple Paging Logic. ASP.NET MVC3
I would like to add simple paging procedure in my project. Though far I've created a Stored Procedure as:
CREATE PROCEDURE getStudent_Paging
(
@PageIndex INT,
@PageSize INT,
)
AS
BEGIN
SET NOCOUNT ON;
DECLARE @minIndex int,
…

user3064407
- 3
- 3
0
votes
1 answer
Custom paging logic in MVC 4 view with Stored procedures
I am returning records from a stored procedure and I want to use custom paging in view. This is what I have so far:
Controller:
public ActionResult Index(int currentPage=1, int PageNo = 1, int PageSize = 10, string SortColumn = "Name",…

who-aditya-nawandar
- 1,334
- 9
- 39
- 89
0
votes
3 answers
Autopaging or custom paging which is better in datagrid?
i used datagrid control in .net platform... but now i am in big confusion .. that is ..which is better to used custom or autopaging option..
gud explaination or example is needed..
i dont know about any method.. very well.
i find on search.. but i…

sikender
- 5,883
- 7
- 42
- 80
0
votes
2 answers
Paging in asp.net mvc like blogger
I like to implement a paging in my asp.net mvc(C#) application like the one in blogger(blogspot.com).
The Paging should look like:
`New Posts Home Older Posts`
The Page should contain the number of items…

Prasad
- 58,881
- 64
- 151
- 199
0
votes
1 answer
Unable to find control in BottomPagerRow of GridView
I have a very simple application that has a GridView. I have a custom BottomPagerRow that is using a drop down list and link buttons. If I attempt to use the controls while the default pages are showing it works fine, but if I change the page size…

Keith D Ball
- 131
- 7
0
votes
1 answer
jsRender and paging
I am trying to get jsRender and paging to work, but I am somewhat new to jsRender and jquery for that matter.
I have tried to modify this to work with jsRender instead, but I am having only limited success.
I am getting an exception when I click…

Sha
- 2,185
- 1
- 36
- 61
0
votes
1 answer
Design guidance on Business Layer Paging
WCF/C# N-Tier app.
We have implemented Paging in our business Layer using this snippet as a basic guideline.
I'm just wondering- in an effort to make the paging functionality testable, should I make the pager a public property of our Manager classes…

Liam
- 1,267
- 2
- 17
- 30
0
votes
2 answers
Subsonic-Paging-Order problem
I have a datagrid where I am using the custom paging option (ref: http://subsonicproject.com/querying/webcast-using-paging/) in the Subsonic framework.
I also have a dropdown that filters the data by State. This is added to the query through the…
Scott