I am looking at jQuery as an alternative to an ASP.net Gridview for use in paging data to reduce database calls (I looked into ObjectDataSourc es as an alternative, but it seemed to take longer than the default paging due to the need to run the Row_Number function on each row before selecting the rows needed).
I am using the plugin found here: http://plugins.jquery.com/project/pagination
The dataset I am trying to load...
Search Result
Collapse
3 results in 0.0041 seconds.
Keywords
Members
Tags
-
Limit in jQuery/DOM/Browser of 65540
-
How can I do Paging in my websites ?
Hi ,
I am using C# & asp.net in programming , i have problem when display data from tables of DB ,
I am displaying content like this :
Code:while (mySqlDataReader.Read()) { // News is id of div which declared in source . News.[B]InnerHtml [/B]+= " <div>" +"<h4>"+mySqlDataReader["NewsTitle"].ToString()+ "<a href=NewsDetails.aspx?ID="
-
hiding columns in Gridview with paging enabled
Hi,
I am programmaticall y binding gridview to a datatable. I want to hide 2 columns. I can be done by adding code in RowCreated event of gridview like
e.Row.Cells[0].Visible = false;
e.Row.Cells[5].Visible = false;
but after that paging is not working.
I tried another way by using gridview's column.Visible property
but its giving error
Index was out of range. Must be...