Click here to Skip to main content
15,921,959 members
Home / Discussions / ASP.NET
   

ASP.NET

 
JokeRe: required project Pin
Mircea Grelus24-Oct-07 12:50
Mircea Grelus24-Oct-07 12:50 
AnswerRe: required project Pin
Christian Graus24-Oct-07 13:06
protectorChristian Graus24-Oct-07 13:06 
QuestionSession Problem Pin
Malleswar123424-Oct-07 8:25
Malleswar123424-Oct-07 8:25 
AnswerRe: Session Problem Pin
Felipe Dalorzo24-Oct-07 10:10
Felipe Dalorzo24-Oct-07 10:10 
GeneralRe: Session Problem Pin
Malleswar123424-Oct-07 21:39
Malleswar123424-Oct-07 21:39 
AnswerRe: Session Problem Pin
Kissy1624-Oct-07 21:42
Kissy1624-Oct-07 21:42 
GeneralRe: Session Problem Pin
Malleswar123425-Oct-07 0:51
Malleswar123425-Oct-07 0:51 
AnswerRe: Session Problem Pin
Pete O'Hanlon25-Oct-07 1:24
mvePete O'Hanlon25-Oct-07 1:24 
You will see this behaviour if your session is running in-proc on a multi-processor system, or in a web-farm/web-garden. What you need to do is change the sessionstate to run under either SQL Server state, or as stateserver. Supposing that you are using the state server, then you need to start the ASP.NET state service on the server and add the following to your web.config.
>sessionstate 
      mode="stateserver"
      cookieless="false" 
      timeout="20" 
      sqlconnectionstring="data source=127.0.0.1; user id=user; password=password"
      server="127.0.0.1" 
      port="42424" 
  />


Deja View - the feeling that you've seen this post before.

QuestionFailed To Access IIS Metabase [modified] Pin
#realJSOP24-Oct-07 4:50
professional#realJSOP24-Oct-07 4:50 
AnswerRe: Failed To Access IIS Metabase Pin
SHatchard24-Oct-07 5:31
SHatchard24-Oct-07 5:31 
GeneralRe: Failed To Access IIS Metabase Pin
#realJSOP24-Oct-07 5:46
professional#realJSOP24-Oct-07 5:46 
AnswerRe: Failed To Access IIS Metabase Pin
Mircea Grelus24-Oct-07 13:03
Mircea Grelus24-Oct-07 13:03 
AnswerRe: Failed To Access IIS Metabase Pin
Christian Graus25-Oct-07 0:47
protectorChristian Graus25-Oct-07 0:47 
AnswerRe: Failed To Access IIS Metabase Pin
Pete O'Hanlon25-Oct-07 1:12
mvePete O'Hanlon25-Oct-07 1:12 
AnswerRe: Failed To Access IIS Metabase Pin
Rama Krishna Vavilala25-Oct-07 1:46
Rama Krishna Vavilala25-Oct-07 1:46 
Questionpage Programming citations Pin
raquidd2224-Oct-07 4:27
raquidd2224-Oct-07 4:27 
AnswerRe: page Programming citations Pin
Guffa24-Oct-07 9:10
Guffa24-Oct-07 9:10 
QuestionForm readonly Pin
kjosh24-Oct-07 4:12
kjosh24-Oct-07 4:12 
AnswerRe: Form readonly Pin
Guffa24-Oct-07 9:05
Guffa24-Oct-07 9:05 
GeneralRe: Form readonly Pin
kjosh24-Oct-07 10:23
kjosh24-Oct-07 10:23 
AnswerRe: Form readonly Pin
Guffa25-Oct-07 1:01
Guffa25-Oct-07 1:01 
Questionintegrating shopping cart with ebay Pin
Khan.Bangash24-Oct-07 4:04
Khan.Bangash24-Oct-07 4:04 
AnswerRe: integrating shopping cart with ebay Pin
il_masacratore24-Oct-07 11:43
il_masacratore24-Oct-07 11:43 
Question[Message Deleted] Pin
venky45624-Oct-07 3:53
venky45624-Oct-07 3:53 
AnswerRe: indexing server Pin
Imran Khan Pathan24-Oct-07 3:56
Imran Khan Pathan24-Oct-07 3: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.