Sessions
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, can anyone tell me the difference between session and session.item sowmya
-
Hi, can anyone tell me the difference between session and session.item sowmya
Session is an object of HttpSessionState whereas Session.Item is the collection of Session values. Say,
Session("Name")="Sowmi" 'Here each one is an item of Session object.
Session("Designation")="Developer" 'Here each one is an item of Session object.Response.Write Session.Item("Name") 'Also same.
:)
Regards, Venkatesh Mookkan. Software Engineer