Click here to Skip to main content
15,886,518 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: page termination Pin
N a v a n e e t h19-Aug-08 3:02
N a v a n e e t h19-Aug-08 3:02 
GeneralRe: page termination Pin
vjvjvjvj19-Aug-08 3:55
vjvjvjvj19-Aug-08 3:55 
AnswerRe: page termination Pin
Abhijit Jana19-Aug-08 4:51
professionalAbhijit Jana19-Aug-08 4:51 
GeneralRe: page termination Pin
vjvjvjvj19-Aug-08 6:59
vjvjvjvj19-Aug-08 6:59 
AnswerRe: page termination Pin
Abhijit Jana19-Aug-08 18:32
professionalAbhijit Jana19-Aug-08 18:32 
GeneralRe: page termination Pin
vjvjvjvj19-Aug-08 22:03
vjvjvjvj19-Aug-08 22:03 
Questionshared variable Pin
vjvjvjvj19-Aug-08 2:32
vjvjvjvj19-Aug-08 2:32 
AnswerRe: shared variable Pin
N a v a n e e t h19-Aug-08 2:59
N a v a n e e t h19-Aug-08 2:59 
vjvjvjvj wrote:
Say user A adds four values in the shared hash table from the page class on Machine A ,
will user B will have same values seen for hash table.


YES.

vjvjvjvj wrote:
If this undesired effect occurs what is the workaround for the given scenario without losing current functionality. How I can mantain the hash table without losing its values between the page refresh.


This is how static(shared) works. It's value will be available until application domain unloads.

You need to keep the hashtable instance in a session so that you won't loose the data in it and each user will get their own copy.

All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia

How to use google | Ask smart questions

GeneralRe: shared variable Pin
vjvjvjvj19-Aug-08 6:59
vjvjvjvj19-Aug-08 6:59 
QuestionExtract video file from email inbox Pin
Imran Khan Pathan19-Aug-08 2:18
Imran Khan Pathan19-Aug-08 2:18 
AnswerRe: Extract video file from email inbox Pin
N a v a n e e t h19-Aug-08 3:02
N a v a n e e t h19-Aug-08 3:02 
QuestionRegular expression Pin
swati8519-Aug-08 1:51
swati8519-Aug-08 1:51 
AnswerRe: Regular expression Pin
Brij19-Aug-08 2:04
mentorBrij19-Aug-08 2:04 
QuestionPage refresh Pin
omlac19-Aug-08 1:48
omlac19-Aug-08 1:48 
AnswerRe: Page refresh Pin
Brij19-Aug-08 2:01
mentorBrij19-Aug-08 2:01 
AnswerRe: Page refresh [modified] Pin
R.Palanivel19-Aug-08 2:02
R.Palanivel19-Aug-08 2:02 
AnswerRe: Page refresh Pin
omlac19-Aug-08 2:18
omlac19-Aug-08 2:18 
AnswerRe: Page refresh Pin
ChrisKo19-Aug-08 9:26
ChrisKo19-Aug-08 9:26 
QuestionReturning a value from a popup window Pin
Gretna19-Aug-08 1:07
Gretna19-Aug-08 1:07 
AnswerRe: Returning a value from a popup window Pin
Abhijit Jana19-Aug-08 1:28
professionalAbhijit Jana19-Aug-08 1:28 
GeneralRe: Returning a value from a popup window Pin
Gretna19-Aug-08 2:51
Gretna19-Aug-08 2:51 
GeneralRe: Returning a value from a popup window Pin
Gretna19-Aug-08 2:57
Gretna19-Aug-08 2:57 
GeneralRe: Returning a value from a popup window Pin
Gretna19-Aug-08 5:00
Gretna19-Aug-08 5:00 
AnswerRe: Returning a value from a popup window Pin
Abhijit Jana19-Aug-08 5:12
professionalAbhijit Jana19-Aug-08 5:12 
GeneralRe: Returning a value from a popup window Pin
Gretna19-Aug-08 5:23
Gretna19-Aug-08 5:23 

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.