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

ASP.NET

 
QuestionHow to rollback a transaction Pin
sabby200624-Oct-06 1:49
sabby200624-Oct-06 1:49 
AnswerRe: How to rollback a transaction Pin
Sathesh Sakthivel24-Oct-06 1:58
Sathesh Sakthivel24-Oct-06 1:58 
GeneralRe: How to rollback a transaction Pin
sabby200624-Oct-06 3:09
sabby200624-Oct-06 3:09 
GeneralRe: How to rollback a transaction Pin
Sathesh Sakthivel24-Oct-06 3:27
Sathesh Sakthivel24-Oct-06 3:27 
QuestionPerformance issue when storing large dataset in Session variable Pin
Vinkum24-Oct-06 1:45
Vinkum24-Oct-06 1:45 
AnswerRe: Performance issue when storing large dataset in Session variable Pin
Paddy Boyd24-Oct-06 2:51
Paddy Boyd24-Oct-06 2:51 
GeneralRe: Performance issue when storing large dataset in Session variable Pin
Dave Sexton24-Oct-06 3:00
Dave Sexton24-Oct-06 3:00 
AnswerRe: Performance issue when storing large dataset in Session variable Pin
Dave Sexton24-Oct-06 2:59
Dave Sexton24-Oct-06 2:59 
Don't store large amounts of data in a session state variable.

Here's my take on your problem;
Refine your dataset to hold fewer items. Limit it only to that which the client machine has requested. If you save a dataset in the session variable you are in fact creating & saving in memory each time a different browser instance loads that page! Major waste of resources.

If your reasoning behind this is faster load times then rather consider cutting down on the number of items in the dataset when the page loads - noone needs to see all 7500 items at once. It may be more postbacks but it's a more usable page.

You could also look at caching[^] the data, though I still wouldn't recommend caching a dataset with 7500 rows.

I'm assuming you using a basket/shopping cart type thing, write the items that the client has selected to an XML file and store/retrieve that on the client machine when you need to do any processing. Why waste server side resources when you can save it on the client?

As a general rule of thumb when it comes to developing for the web, be cheap with your resources.
Questioncharacter count Pin
Deepak the Cool24-Oct-06 1:42
Deepak the Cool24-Oct-06 1:42 
AnswerRe: character count Pin
Jim Conigliaro24-Oct-06 5:00
Jim Conigliaro24-Oct-06 5:00 
Questionasp.net server problem? Pin
bolivar4424-Oct-06 0:33
bolivar4424-Oct-06 0:33 
AnswerRe: asp.net server problem? Pin
Dave Sexton24-Oct-06 2:16
Dave Sexton24-Oct-06 2:16 
AnswerRe: asp.net server problem? Pin
Paddy Boyd24-Oct-06 2:52
Paddy Boyd24-Oct-06 2:52 
GeneralRe: asp.net server problem? Pin
bolivar4424-Oct-06 7:01
bolivar4424-Oct-06 7:01 
AnswerRe: asp.net server problem? Pin
bolivar4424-Oct-06 7:38
bolivar4424-Oct-06 7:38 
QuestionPrint crystal report in asp.net Pin
seyha23-Oct-06 23:29
seyha23-Oct-06 23:29 
Questionb2c site Pin
greekius23-Oct-06 23:26
greekius23-Oct-06 23:26 
QuestionObjectDataSource Output Parameter Pin
wwwlicious23-Oct-06 22:59
wwwlicious23-Oct-06 22:59 
QuestionRun Website Pin
qtuan23-Oct-06 22:41
qtuan23-Oct-06 22:41 
AnswerRe: Run Website Pin
Dave Sexton23-Oct-06 23:55
Dave Sexton23-Oct-06 23:55 
GeneralRe: Run Website Pin
qtuan24-Oct-06 15:15
qtuan24-Oct-06 15:15 
Questionsms any where in the world from asp.net? Pin
Tridip Bhattacharjee23-Oct-06 22:39
professionalTridip Bhattacharjee23-Oct-06 22:39 
AnswerRe: sms any where in the world from asp.net? Pin
Sathesh Sakthivel23-Oct-06 23:40
Sathesh Sakthivel23-Oct-06 23:40 
Questionhow to increase the size of image,and how to del row in datagrid Pin
G M Reddy23-Oct-06 21:50
G M Reddy23-Oct-06 21:50 
AnswerRe: how to increase the size of image,and how to del row in datagrid Pin
thomas_joyee23-Oct-06 23:32
thomas_joyee23-Oct-06 23:32 

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.