Click here to Skip to main content
15,891,136 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to check if a folder path exists. Pin
Tamimi - Code27-Jun-07 19:51
Tamimi - Code27-Jun-07 19:51 
AnswerRe: How to check if a folder path exists. Pin
Vasudevan Deepak Kumar27-Jun-07 20:59
Vasudevan Deepak Kumar27-Jun-07 20:59 
QuestionSession state in ASP.NET Pin
drexler_kk27-Jun-07 19:45
drexler_kk27-Jun-07 19:45 
AnswerRe: Session state in ASP.NET Pin
sathesh pandian27-Jun-07 19:49
sathesh pandian27-Jun-07 19:49 
GeneralRe: Session state in ASP.NET Pin
drexler_kk27-Jun-07 20:13
drexler_kk27-Jun-07 20:13 
GeneralRe: Session state in ASP.NET Pin
sathesh pandian27-Jun-07 20:20
sathesh pandian27-Jun-07 20:20 
GeneralRe: Session state in ASP.NET Pin
drexler_kk27-Jun-07 21:20
drexler_kk27-Jun-07 21:20 
GeneralRe: Session state in ASP.NET Pin
Sathesh Sakthivel27-Jun-07 20:21
Sathesh Sakthivel27-Jun-07 20:21 
drexler_kk wrote:
Anyone can give me a solution how to create those Session in ASP.NET?


Storage location

InProc - session kept as live objects in web server (aspnet_wp.exe). Use "cookieless" configuration in web.config to "munge" the sessionId onto the URL (solves cookie/domain/path RFC problems too!)

StateServer - session serialized and stored in memory in a separate process (aspnet_state.exe). State Server can run on another machine

SQLServer - session serialized and stored in SQL server


Performance


InProc - Fastest, but the more session data, the more memory is consumed on the web server, and that can affect performance.

StateServer - When storing data of basic types (e.g. string, integer, etc), in one test environment it's 15% slower than InProc. However, the cost of serialization/deserialization can affect performance if you're storing lots of objects. You have to do performance testing for your own scenario.

SQLServer - When storing data of basic types (e.g. string, integer, etc), in one test environment it's 25% slower than InProc. Same warning about serialization as in StateServer.


Regards,

Satips.Rose | [Rose]

QuestionOpen PDF files Pin
Biju Sam27-Jun-07 19:08
Biju Sam27-Jun-07 19:08 
AnswerRe: Open PDF files Pin
sathesh pandian27-Jun-07 19:15
sathesh pandian27-Jun-07 19:15 
AnswerRe: Open PDF files Pin
Sathesh Sakthivel27-Jun-07 19:19
Sathesh Sakthivel27-Jun-07 19:19 
GeneralRe: Open PDF files Pin
Biju Sam27-Jun-07 19:35
Biju Sam27-Jun-07 19:35 
GeneralRe: Open PDF files Pin
sathesh pandian27-Jun-07 19:43
sathesh pandian27-Jun-07 19:43 
GeneralRe: Open PDF files Pin
Kasson27-Jun-07 19:46
Kasson27-Jun-07 19:46 
GeneralRe: Open PDF files Pin
Biju Sam27-Jun-07 20:32
Biju Sam27-Jun-07 20:32 
QuestionHow to implement an aspect factory Pin
rameshbhojan27-Jun-07 19:07
rameshbhojan27-Jun-07 19:07 
AnswerRe: How to implement an aspect factory Pin
Sathesh Sakthivel27-Jun-07 19:21
Sathesh Sakthivel27-Jun-07 19:21 
GeneralRe: How to implement an aspect factory Pin
rameshbhojan27-Jun-07 19:36
rameshbhojan27-Jun-07 19:36 
GeneralRe: How to implement an aspect factory Pin
Sathesh Sakthivel27-Jun-07 19:54
Sathesh Sakthivel27-Jun-07 19:54 
GeneralRe: How to implement an aspect factory Pin
Christian Graus27-Jun-07 20:41
protectorChristian Graus27-Jun-07 20:41 
Questioncreate a forum like code project Pin
accessred27-Jun-07 18:17
accessred27-Jun-07 18:17 
AnswerRe: create a forum like code project Pin
Sathesh Sakthivel27-Jun-07 18:37
Sathesh Sakthivel27-Jun-07 18:37 
GeneralRe: create a forum like code project Pin
accessred27-Jun-07 19:57
accessred27-Jun-07 19:57 
AnswerRe: create a forum like code project Pin
sathesh pandian27-Jun-07 18:49
sathesh pandian27-Jun-07 18:49 
GeneralRe: create a forum like code project Pin
accessred27-Jun-07 19:56
accessred27-Jun-07 19:56 

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.