Click here to Skip to main content
15,919,423 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Hierarchial TreeView Pin
Christian Graus26-Jul-07 18:51
protectorChristian Graus26-Jul-07 18:51 
Questionsession variable preventing image retrieval Pin
boyindie26-Jul-07 6:34
boyindie26-Jul-07 6:34 
QuestionExpect IE 6.0 other browsers do not show web pages correctly [modified] Pin
devbrat26-Jul-07 6:04
devbrat26-Jul-07 6:04 
AnswerRe: Expect IE 6.0 other browsers do not show web pages correctly Pin
wk63326-Jul-07 6:11
wk63326-Jul-07 6:11 
QuestionAny one know about session? Pin
vurugonda26-Jul-07 5:12
vurugonda26-Jul-07 5:12 
AnswerRe: Any one know about session? Pin
wk63326-Jul-07 6:14
wk63326-Jul-07 6:14 
GeneralRe: Any one know about session? Pin
vurugonda26-Jul-07 6:21
vurugonda26-Jul-07 6:21 
GeneralRe: Any one know about session? Pin
wk63326-Jul-07 6:55
wk63326-Jul-07 6:55 
Session is unique for each browser/user.

Example:
Joe visits your website from his computer
Joe clicks on "Buy Coke"
Your website executes: Session("product") = "Coke"
Jane visits your website from her computer
Jane clicks on "Buy Pepsi"
Your website executes: Session("product") = "Pepsi"

There is no problem, Joe still has "Coke" in his Session, and Jane has "Pepsi" in hers.

If Joe closes his browser, and Jane immediately opens a browser on Joe's computer, then she might end up getting Coke.

Also, If Joe buys Coke using IE, and Pepsi using Firefox, there is no problem. There will be a separate session for each browser (IE or Firefox) coming from the same computer.

What is shared between all users is the Cache.

As for knowing who is executing your code, Page.User.Identity.Name will tell you the name used to log in.
GeneralRe: Any one know about session? Pin
vurugonda27-Jul-07 5:13
vurugonda27-Jul-07 5:13 
GeneralRe: Any one know about session? Pin
wk63327-Jul-07 5:30
wk63327-Jul-07 5:30 
GeneralRe: Any one know about session? Pin
vurugonda27-Jul-07 5:50
vurugonda27-Jul-07 5:50 
GeneralRe: Any one know about session? Pin
wk63327-Jul-07 6:12
wk63327-Jul-07 6:12 
GeneralHow to combine two applications in one application Pin
vurugonda9-Aug-07 17:47
vurugonda9-Aug-07 17:47 
GeneralRe: How to combine two applications in one application Pin
wk63310-Aug-07 6:15
wk63310-Aug-07 6:15 
QuestionTotal string length Pin
VK-Cadec26-Jul-07 5:06
VK-Cadec26-Jul-07 5:06 
AnswerRe: Total string length Pin
kubben26-Jul-07 5:37
kubben26-Jul-07 5:37 
Questiongetting dynamically created control's value as null Pin
imranafsari26-Jul-07 5:05
imranafsari26-Jul-07 5:05 
AnswerRe: getting dynamically created control's value as null Pin
Tarakeshwar Reddy26-Jul-07 5:15
professionalTarakeshwar Reddy26-Jul-07 5:15 
GeneralRe: getting dynamically created control's value as null Pin
imranafsari26-Jul-07 5:35
imranafsari26-Jul-07 5:35 
GeneralRe: getting dynamically created control's value as null Pin
Tarakeshwar Reddy26-Jul-07 6:03
professionalTarakeshwar Reddy26-Jul-07 6:03 
AnswerRe: getting dynamically created control's value as null Pin
wk63326-Jul-07 5:34
wk63326-Jul-07 5:34 
GeneralRe: getting dynamically created control's value as null Pin
imranafsari26-Jul-07 5:42
imranafsari26-Jul-07 5:42 
GeneralRe: getting dynamically created control's value as null Pin
wk63326-Jul-07 5:56
wk63326-Jul-07 5:56 
QuestionResponse.Redirect Pin
Civic0626-Jul-07 4:33
Civic0626-Jul-07 4:33 
AnswerRe: Response.Redirect Pin
Blue_Boy26-Jul-07 4:42
Blue_Boy26-Jul-07 4:42 

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.