i have a login page where i retrieve the name of employee from database as
Session["Emp_Name"] = ds.Tables[0].Rows[0]["Emp_Mas_Name"].ToString()
after that i assign it to a string variable in my master page as
string Emp_Name = Session["Emp_Name"].ToString();
and i use that variable in aspx page to display the name as
<%=Emp_Name%>
it works fine in localhost but when it's on a live server it sometimes it shows another employee name who logged in at the same time in different systems.
please guide me to resolve this problem, thank you very much