I have a simple question which is confusing ..
Assume I have a class as Employee as follows
public Class Employee {
public Int EmpID { get; set ;}
public string EmpName { get; set ; }
}
Suppose web application creates instance of the object as follow
Employee obj = new Employee()
obj.EmpID = Int32.Parse(txtID.text)
obj.EmpName = txtName.text
If multiple instance of web application are executed(like 2 or 3 users using the web application at the same time) , then will the values of obj gets mixed up ?. Or is it unique to instance of web application running .