Is it possible to set a variable in the system which is not for each user unique?, who access the page?
Ex.
I access the page and in codebehind something like that:
// create variable over all
if (sysstring != null || "")
SystemString sysstring = DateTime.now;
So if another user already accessed the page, I receive the value of the date when he accessed the page.
Thank you
You’re looking for Application scope:
Altho this will reset with every app recycle. I would suggest storing it in a DB, which is where all cross-user variables should be!