Ask a Question related to ASP.NET General, Design and Development.
-
Joseph D. DeJohn #1
Custom Paging Efficiency
Hello,
I'm trying to implement custom paging. At the moment I can get the
first page to display. When I click on the number 2 it takes forever to
come back to the Page_Load function. I am saving my DataSet in ViewState
with the WriteXML and ReadXML functions. Does anyone have an idea of why it
is taking so long? Any help would be appreciated. Thank-you.
--
Sincerely,
Joseph D. DeJohn
[url]http://www.geocities.com/cujdd5/[/url]
Joseph D. DeJohn Guest
-
Custom Paging Possible?
Hi, I'd like to replace a DataGrid's paging hyperlinks with my own. Is this possible? TIA, Axel Dahmen -
Custom Paging in datagrid
hi all, i have tried implementing custom paging using the example from 4 guys from rolla....however example doesnot work as desired.....i.e when... -
custom paging in ASP.NET
Hello friends, i am using Datagrid builtin paging and it working well but i want to use custom paging bcoz data is too heavy so pls tell me how can... -
Custom Paging Question
Greetings, I have a problem that I am trying to work through. Any help would be appreciated. I have an asp.net application that uses... -
Custom paging
Another option for custom paging is 1. Get all the primary key column values in the page load event. 2. Store these values in the session cache... -
S. Justin Gengo #2
Re: Custom Paging Efficiency
It would be that you're saving the entire data set in view state. This
means that when you post back the dataset has to be serialized and sent over
the ether twice: Once to the server where it's recreated and then back to
the client again. You'd be better off either saving it in session state (no
serialization required) or just connecting to the database each time using a
datareader.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Joseph D. DeJohn" <joeddejohn@hotmail.com> wrote in message
news:eSIe1VEXDHA.1744@TK2MSFTNGP12.phx.gbl...the> Hello,
> I'm trying to implement custom paging. At the moment I can getit> first page to display. When I click on the number 2 it takes forever to
> come back to the Page_Load function. I am saving my DataSet in ViewState
> with the WriteXML and ReadXML functions. Does anyone have an idea of why> is taking so long? Any help would be appreciated. Thank-you.
>
> --
> Sincerely,
> Joseph D. DeJohn
> [url]http://www.geocities.com/cujdd5/[/url]
>
>
S. Justin Gengo Guest



Reply With Quote

