vishnukamath wrote:
the problem is If another user 'B' logged on to the application,then the session is overwritted by the by the 'B's user name and i m losing the 'A's user name which is stored previously in the session
Hi, Are you sure that you are using Session object (which is for each users) and not Application state (which is common for all users or sessions) Eg:
//Session Object
Session["UserName"] = txtUserName.Text;
//Application Object
Application["Message"] = "Message to All users";
Sujith My Blog