Tagged Questions

0
votes
3answers
27 views

How to get total result count in paged result views?

Hi, I have a DB table with approx. 100,000 entries. My web app will show paged results of search queries, which may yield between 0 and 100,000 records. When generating the output I want to do two …
0
votes
3answers
32 views

Server Error due to paging issue

Hello all, I think I sorted out my GridView1_PageIndexChanged event and thinking it should work protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { …
1
vote
1answer
19 views

LINQ and dynamic queries with paging and without LINQ2SQL

I have tried some ways to use LINQ dynamic queries - LINQKit and LINQ Dynamic Query Library. I do not like the second because it some way kills the LINQ idea - to be able to check queries at compile …
0
votes
4answers
36 views

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 …
0
votes
2answers
18 views

Implementing the gridview paging with database

I am binding dataset to a gridview,Which has 1000 records in it.As you know sending this entire dataset across a wire is costly. In the gridview i use paging which is set to 20 records per page. …
0
votes
1answer
12 views

The IListSource does not contain any data sources.during next page is clicked in gridview

Lbl_Username.Text = FirstName + " " + LastName; if (!IsPostBack) { ds = objSun.FetchTravelDetails(userId); int datasetcount = ds.Tables[0].Rows.Count; …
1
vote
2answers
31 views

Find out how many pages of memory a process uses on linux

I need to find out how many pages of memory a process allocates? Each page is 4096, the process memory usage I'm having some problems locating the correct value. When I'm looking in the …
0
votes
0answers
22 views

when nextpage is clicked in gridview it shows empty page in asp.net

Lbl_Username.Text = FirstName + " " + LastName; #region Get current year if (!IsPostBack) { int getCurrentYear = DateTime.Now.Year; int co2 = …
0
votes
4answers
64 views

Please help me with ASP.NET MVC Paging error

hello all, I am getting the following error in my mvc application when I am doing the paging functionality CS1061: 'System.Collections.Generic.IEnumerable' does not contain a definition for …
-1
votes
2answers
40 views

paging next and previous links don’t work!

hello can anyone help me with this code?the next and previous links don't work $limit=20; mysql_connect("localhost","root",""); mysql_select_db("autoschool") or die("Unable to select database"); …
3
votes
2answers
91 views

What is the Equivalent syntax of mysql “ LIMIT “ clause in SQL Server

What is the Equivalent syntax of MySQL " LIMIT " clause in SQL Server . I would like to use it for doing paging of my results. (want to show records5 to 10 )
0
votes
2answers
18 views

How to organize ASP.NET Repaeter Digg style paging

Does anybody know the technique without writing own code for every repeater? Please give me a link
1
vote
1answer
43 views

What’s the best way to create a paging gridview-style partial view in Asp.net MVC?

In the current MVC project I'm working on, I need to be able to create something exactly like the GridView from asp.net webforms. I'm actually using FubuMVC, but I can adapt any Asp.net MVC solution …
0
votes
1answer
23 views

Getting rowcount of a common table expression CTE into a parameter for paging

My friend here is coding a web page with a datagrid that has paging. We were able to get the total pagecount into a column as a window function but we can't figure out how to get it into a parameter. …
3
votes
5answers
142 views

Adding a projection to an NHibernate criteria stops it from performing default entity selection

I'm writing an NHibernate criteria that selects data supporting paging. I'm using the COUNT(*) OVER() expression from SQL Server 2005(+) to get hold of the total number of available rows, as suggested …

1 2 3 4 5 13 next
15 30 50 per page