Click here to Skip to main content
15,908,112 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDisplay data as soon as it comes Pin
sood_is_in29-Oct-07 23:26
sood_is_in29-Oct-07 23:26 
AnswerRe: Display data as soon as it comes Pin
pmarfleet29-Oct-07 23:37
pmarfleet29-Oct-07 23:37 
GeneralRe: Display data as soon as it comes Pin
sood_is_in29-Oct-07 23:45
sood_is_in29-Oct-07 23:45 
GeneralRe: Display data as soon as it comes Pin
pmarfleet29-Oct-07 23:59
pmarfleet29-Oct-07 23:59 
GeneralRe: Display data as soon as it comes Pin
sood_is_in30-Oct-07 0:08
sood_is_in30-Oct-07 0:08 
GeneralRe: Display data as soon as it comes Pin
pmarfleet30-Oct-07 0:26
pmarfleet30-Oct-07 0:26 
GeneralRe: Display data as soon as it comes Pin
sood_is_in30-Oct-07 0:32
sood_is_in30-Oct-07 0:32 
GeneralRe: Display data as soon as it comes Pin
pmarfleet30-Oct-07 2:30
pmarfleet30-Oct-07 2:30 
I think you need to go back to first principles. Consider whether it is necessary or appropriate to display 100,000 records on a page. There are a number of problems with this.

Firstly, the size of your HTTP response is going to be huge, putting pressure on your web server.

Secondly, your users are going to have to wait some significant time for the page to download, even if you switch buffering off.

Thirdly, do your users want ot need to view 100,000 records at once? I don't think I could make sense of so much information. IMHO, no more than 100-150 records should be displayed on a page at any one time.

You should consider implementing some sort of paging/filtering mechanism to allow your users to get to the data they need. Yes, multiple requests would be made to the database as the user filters the data or moves through the pages. However it is surely better application design for your users to be making multiple requests for 100-150 records instead of a single request for 100,000 records.

Paul Marfleet

Questiongridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:14
Sonia Gupta29-Oct-07 23:14 
AnswerRe: gridview calculations in java-script Pin
soni uma29-Oct-07 23:28
soni uma29-Oct-07 23:28 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:42
Sonia Gupta29-Oct-07 23:42 
GeneralRe: gridview calculations in java-script Pin
soni uma30-Oct-07 0:41
soni uma30-Oct-07 0:41 
AnswerRe: gridview calculations in java-script Pin
InsDev29-Oct-07 23:32
InsDev29-Oct-07 23:32 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:43
Sonia Gupta29-Oct-07 23:43 
GeneralRe: gridview calculations in java-script Pin
InsDev29-Oct-07 23:47
InsDev29-Oct-07 23:47 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:52
Sonia Gupta29-Oct-07 23:52 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:02
InsDev30-Oct-07 0:02 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta30-Oct-07 0:07
Sonia Gupta30-Oct-07 0:07 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:09
InsDev30-Oct-07 0:09 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta30-Oct-07 0:13
Sonia Gupta30-Oct-07 0:13 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:16
InsDev30-Oct-07 0:16 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta30-Oct-07 0:18
Sonia Gupta30-Oct-07 0:18 
AnswerRe: gridview calculations in java-script Pin
InsDev29-Oct-07 23:45
InsDev29-Oct-07 23:45 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:50
Sonia Gupta29-Oct-07 23:50 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:03
InsDev30-Oct-07 0:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.