Blazor sharing memory data?

Viewed 46

I am having the craziest thing happen. I have 2 users using my Blazor site. When one enters a request ID, the information shows up on the other person's screen. How could this be happening? The only oddity about the site is I'm using injection to pass user information from page to page. Each page has an injection statement at the top (@inject Data.ISession theSession) and that is how the users see the data between pages, but it should only be their data. How is this possible? TIA

1 Answers

I'm sorry for not posting more information. Yes, it's server side. I figured out the issue. It was a local variable that was tagged as static, not a lack of knowledge, that was causing the trouble. Thank you for the responses.

Related