Session state
It is specific to user.
eg.
Session["myData"] = "Ram";
Now the value of Session["myData"], ie. Ram will be available only to that user who has saved this data, if other user is saving different value in Session["myData"], that value will be available to that user.
Application state
It is specific to Application that is data saved into Application is same for all user ie. it is global, if different user is changing the value of Application["myData"], it will be changed for all users.
eg.
Application["myData"] = "Something";
Now Application["myData"] value will be available to all users; if another user changes its value, the changed value will be available to all other users.
Hope this clarifies your doubt.
Thanks
Regards,
Sheo Narayan
http://www.dotnetfunda.com
Udaysimha, if this helps please login to Mark As Answer. | Alert Moderator