Is there room for issue in the following code in terms of multiple users of the same web application? I mean, I know that a purely static string will be shared across all se
Your property is static. This is actually the cause of sharing the property between users.
static
See Scope of static Variable in multi-user ASP.NET web application for more details.